1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00

Fixed a bug (Report from Greg King)

git-svn-id: svn://svn.cc65.org/cc65/trunk@3367 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-01-14 18:40:33 +00:00
parent bd2185c57b
commit 8cd583d591

View File

@ -135,7 +135,6 @@ struct O65Option {
};
/* A o65 relocation table */
#define RELOC_BLOCKSIZE 4096
typedef struct O65RelocTab O65RelocTab;
struct O65RelocTab {
unsigned Size; /* Size of the table */
@ -480,10 +479,12 @@ static void O65RelocPutByte (O65RelocTab* R, unsigned B)
/* Do we have enough space in the buffer? */
if (R->Fill == R->Size) {
/* We need to grow the buffer */
unsigned char* NewBuf = xmalloc (R->Size + RELOC_BLOCKSIZE);
unsigned NewSize = (R->Size == 0)? 1024 : R->Size * 2;
unsigned char* NewBuf = xmalloc (NewSize);
memcpy (NewBuf, R->Buf, R->Size);
xfree (R->Buf);
R->Buf = NewBuf;
R->Size = NewSize;
R->Buf = NewBuf;
}
/* Put the byte into the buffer */