mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-12-07 19:01:29 +00:00
conservatism
SCCS-file: scheck.c SCCS-SID: 7.10
This commit is contained in:
committed by
Paul Eggert
parent
9675381620
commit
aa21c187bb
2
scheck.c
2
scheck.c
@ -36,7 +36,7 @@ char * format;
|
|||||||
if (string == NULL || format == NULL)
|
if (string == NULL || format == NULL)
|
||||||
return result;
|
return result;
|
||||||
fbuf = malloc((alloc_t) (2 * strlen(format) + 4));
|
fbuf = malloc((alloc_t) (2 * strlen(format) + 4));
|
||||||
if (fbuf == MAL)
|
if (fbuf == MAL || fbuf == NULL)
|
||||||
return result;
|
return result;
|
||||||
fp = format;
|
fp = format;
|
||||||
tp = fbuf;
|
tp = fbuf;
|
||||||
|
|||||||
Reference in New Issue
Block a user