1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

The CodeEntry buffer array was one entry to small.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4381 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-10-19 19:37:28 +00:00
parent 3b079c0947
commit 4372d111a2

View File

@ -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 */