diff options
Diffstat (limited to 'xalloca.c')
-rw-r--r-- | xalloca.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -40,7 +40,10 @@ int n; p = (XALLOCATYPE *) alloca(n); if (p == (XALLOCATYPE *) 0) - report(stderr, PS_UNDEFINED, 0, "alloca failed\n"); + { + report(stderr, "alloca failed\n"); + exit(PS_UNDEFINED); + } return(p); } |