1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-06 21:28:54 +00:00
SCCS-file: scheck.c
SCCS-SID: 7.14
This commit is contained in:
Arthur David Olson
1986-12-25 18:08:29 -05:00
committed by Paul Eggert
parent e5a64303fe
commit ca17d363c6

View File

@@ -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;