From: uz Date: Mon, 19 Oct 2009 19:37:28 +0000 (+0000) Subject: The CodeEntry buffer array was one entry to small. X-Git-Tag: V2.13.1~144 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4372d111a21608578be8f2940d559ad59f6f2b2e;p=cc65 The CodeEntry buffer array was one entry to small. git-svn-id: svn://svn.cc65.org/cc65/trunk@4381 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/codeopt.c b/src/cc65/codeopt.c index b149e9b78..9edbe411e 100644 --- a/src/cc65/codeopt.c +++ b/src/cc65/codeopt.c @@ -849,7 +849,7 @@ static unsigned OptPtrStore3 (CodeSeg* S) unsigned I = 0; while (I < CS_GetEntryCount (S)) { - CodeEntry* L[11]; + CodeEntry* L[12]; unsigned Len; /* Get next entry */