From fc6c83e9cd989acc04e4d15cfb76a8dfcde2bc65 Mon Sep 17 00:00:00 2001 From: Ralf Horstmann Date: Mon, 1 Jan 2024 09:05:54 +0100 Subject: [PATCH] Fix out of bounds access to LinkerObjectTypeNames One entry was missing, causing segmentation fault on some platforms. --- oscar64/Linker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/oscar64/Linker.cpp b/oscar64/Linker.cpp index 83a7109..47786b2 100644 --- a/oscar64/Linker.cpp +++ b/oscar64/Linker.cpp @@ -1014,6 +1014,7 @@ static const char * LinkerObjectTypeNames[] = "BSS", "HEAP", "STACK", + "INLAY", "START", "END" };