use xmalloc_unsafe in refill_memory_reserve
authorBT Templeton <bpt@hcoop.net>
Thu, 28 Jun 2012 01:23:22 +0000 (21:23 -0400)
committerRobin Templeton <robin@terpri.org>
Sat, 18 Apr 2015 22:49:07 +0000 (18:49 -0400)
* src/alloc.c (refill_memory_reserve): Use `xmalloc_unsafe'.

src/alloc.c

index 9bc7339..5e71654 100644 (file)
@@ -1448,7 +1448,7 @@ void
 refill_memory_reserve (void)
 {
   if (spare_memory == NULL)
-    spare_memory = GC_MALLOC (SPARE_MEMORY);
+    spare_memory = xmalloc_unsafe (SPARE_MEMORY);
 
   if (spare_memory)
     Vmemory_full = Qnil;