changeset 4816:07ab22e0779a

(alloca): xmalloc cannot return NULL, so don't test for that.
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 27 Oct 2003 07:12:11 +0000
parents b4de80e3c46f
children 7c67f04e1c19
files lib/alloca.c
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lib/alloca.c	Sun Oct 26 11:56:27 2003 +0000
+++ b/lib/alloca.c	Mon Oct 27 07:12:11 2003 +0000
@@ -204,9 +204,6 @@
 
     new = xmalloc (combined_size);
 
-    if (new == 0)
-      abort();
-
     ((header *) new)->h.next = last_alloca_header;
     ((header *) new)->h.deep = depth;