From 48e2f4c334ada55b21d954014c0813fcbc0b6db5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Thu, 27 Feb 1997 03:06:22 -0800
Subject: [PATCH] fix for new backtrace()

Rev: src/interpret.c:1.25
---
 src/interpret.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/interpret.c b/src/interpret.c
index 9e54bbbcda..99adfb268a 100644
--- a/src/interpret.c
+++ b/src/interpret.c
@@ -4,7 +4,7 @@
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
 #include "global.h"
-RCSID("$Id: interpret.c,v 1.24 1997/02/27 08:03:39 hubbe Exp $");
+RCSID("$Id: interpret.c,v 1.25 1997/02/27 11:06:22 hubbe Exp $");
 #include "interpret.h"
 #include "object.h"
 #include "program.h"
@@ -1147,6 +1147,8 @@ int apply_low_safe_and_stupid(struct object *o, INT32 offset)
   new_frame.context=o->prog->inherits[0];
   new_frame.locals = evaluator_stack;
   new_frame.args = 0;
+  new_frame.num_args=0;
+  new_frame.num_locals=0;
   new_frame.fun = -1;
   new_frame.pc = 0;
   new_frame.current_storage=o->storage;
-- 
GitLab