use xmalloc()

This commit is contained in:
Mike Frysinger
2006-06-02 06:30:30 +00:00
parent f0327f8e98
commit 3132e9d830
+1 -1
View File
@@ -1621,7 +1621,7 @@ REGISTER int sub;
static void initarea()
{
brkaddr = malloc(AREASIZE);
brkaddr = xmalloc(AREASIZE);
brktop = brkaddr + AREASIZE;
while ((long) sbrk(0) & ALIGN)