1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-07 02:04:17 +00:00

conservatism

SCCS-file: scheck.c
SCCS-SID: 7.10
This commit is contained in:
Arthur David Olson
1986-11-24 18:48:39 -05:00
committed by Paul Eggert
parent 9675381620
commit aa21c187bb

View File

@ -36,7 +36,7 @@ char * format;
if (string == NULL || format == NULL)
return result;
fbuf = malloc((alloc_t) (2 * strlen(format) + 4));
if (fbuf == MAL)
if (fbuf == MAL || fbuf == NULL)
return result;
fp = format;
tp = fbuf;