mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-05-06 21:28:54 +00:00
bug fix
SCCS-file: scheck.c SCCS-SID: 7.14
This commit is contained in:
committed by
Paul Eggert
parent
e5a64303fe
commit
ca17d363c6
4
scheck.c
4
scheck.c
@@ -29,8 +29,8 @@ char * format;
|
||||
result = "";
|
||||
if (string == NULL || format == NULL)
|
||||
return result;
|
||||
fbuf = malloc((alloc_t) (2 * strlen(format) + 4));
|
||||
if (fbuf == MAL || fbuf == NULL)
|
||||
fbuf = imalloc(2 * strlen(format) + 4);
|
||||
if (fbuf == NULL)
|
||||
return result;
|
||||
fp = format;
|
||||
tp = fbuf;
|
||||
|
||||
Reference in New Issue
Block a user