From: Richard M. Stallman Date: Tue, 14 Jun 1994 19:48:19 +0000 (+0000) Subject: (init_eval_once): Call xmalloc, not malloc. X-Git-Tag: emacs-19.34~7968 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=716acfce8581c74b8d5e68071d34f2bc96370f45;p=emacs.git (init_eval_once): Call xmalloc, not malloc. --- diff --git a/src/eval.c b/src/eval.c index ddea482515f..6e2cbaa651b 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; }