From 716acfce8581c74b8d5e68071d34f2bc96370f45 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 14 Jun 1994 19:48:19 +0000 Subject: [PATCH] (init_eval_once): Call xmalloc, not malloc. --- src/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index ddea482515..6e2cbaa651 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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; } -- 2.20.1