(alloca): xmalloc cannot return NULL, so don't test for that.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 27 Oct 2003 07:12:11 +0000 (07:12 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 27 Oct 2003 07:12:11 +0000 (07:12 +0000)
lib/alloca.c

index c4db187da555e7c1eaf383fb2631670db8520ab4..5e2521b363fdbdd04686b37066a29d35033e0f26 100644 (file)
@@ -204,9 +204,6 @@ alloca (size_t size)
 
     new = xmalloc (combined_size);
 
-    if (new == 0)
-      abort();
-
     ((header *) new)->h.next = last_alloca_header;
     ((header *) new)->h.deep = depth;