changeset 7885:bc6406a90796

(init_eval_once): Call xmalloc, not malloc.
author Richard M. Stallman <rms@gnu.org>
date Tue, 14 Jun 1994 19:48:19 +0000
parents 066a06dd3bd3
children ca955be67b4f
files src/eval.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c	Tue Jun 14 19:46:00 1994 +0000
+++ b/src/eval.c	Tue Jun 14 19:48:19 1994 +0000
@@ -149,7 +149,7 @@
 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;
 }