Added a test for the lag command and started on the sample command
[pspp] / src / q2c.c
index 2098c9bdcc9a2c119c3f6f7153dd9b7a0c2bda96..87dcadb1044e4a6ef18624017e162d8a2b6932d9 100644 (file)
--- a/src/q2c.c
+++ b/src/q2c.c
@@ -163,13 +163,7 @@ xmalloc (size_t size)
   
   vp = malloc (size);
   if (!vp)
-    {
-#if DEBUGGING && __CHECKER__
-      error ("xmalloc(%lu): Inducing segfault.", (unsigned long) size);
-      *((int *) 0) = 0;
-#endif
-      fail ("xmalloc(%lu): %s", (unsigned long) size, VME);
-    }
+    fail ("xmalloc(%lu): %s", (unsigned long) size, VME);
   
   return vp;
 }