mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 00:07:21 +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:
parent
3b079c0947
commit
4372d111a2
@ -849,7 +849,7 @@ static unsigned OptPtrStore3 (CodeSeg* S)
|
|||||||
unsigned I = 0;
|
unsigned I = 0;
|
||||||
while (I < CS_GetEntryCount (S)) {
|
while (I < CS_GetEntryCount (S)) {
|
||||||
|
|
||||||
CodeEntry* L[11];
|
CodeEntry* L[12];
|
||||||
unsigned Len;
|
unsigned Len;
|
||||||
|
|
||||||
/* Get next entry */
|
/* Get next entry */
|
||||||
|
Loading…
Reference in New Issue
Block a user