1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-07 07:20:04 +00:00
SCCS-file: ialloc.c
SCCS-SID: 8.10
This commit is contained in:
Arthur David Olson
1988-02-17 21:40:56 -05:00
committed by Paul Eggert
parent 072552dad4
commit 06b3a12766

View File

@@ -88,7 +88,7 @@ char * new;
else if (newsize == 0)
return old;
else oldsize = strlen(old);
if ((result = irealloc(old, (alloc_t) (oldsize + newsize + 1))) != NULL)
if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
if (!NULLMAL(new))
(void) strcpy(result + oldsize, new);
return result;