(init_eval_once): Call xmalloc, not malloc.
authorRichard M. Stallman <rms@gnu.org>
Tue, 14 Jun 1994 19:48:19 +0000 (19:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 14 Jun 1994 19:48:19 +0000 (19:48 +0000)
src/eval.c

index ddea482..6e2cbaa 100644 (file)
@@ -149,7 +149,7 @@ extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argu
 init_eval_once ()
 {
   specpdl_size = 50;
-  specpdl = (struct specbinding *) malloc (specpdl_size * sizeof (struct specbinding));
+  specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
   max_specpdl_size = 600;
   max_lisp_eval_depth = 200;
 }