From f54521d37e36cb9c3b652ebcbb1309264003f652 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Tue, 27 Jan 1998 10:06:43 -0800
Subject: [PATCH] minor but annoying leak fixed

Rev: src/main.c:1.38
---
 src/main.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main.c b/src/main.c
index 156d0e17e7..8fd9af3317 100644
--- a/src/main.c
+++ b/src/main.c
@@ -4,7 +4,7 @@
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
 #include "global.h"
-RCSID("$Id: main.c,v 1.37 1998/01/26 19:59:56 hubbe Exp $");
+RCSID("$Id: main.c,v 1.38 1998/01/27 18:06:43 hubbe Exp $");
 #include "fdlib.h"
 #include "backend.h"
 #include "module.h"
@@ -285,8 +285,7 @@ int dbm_main(int argc, char **argv)
     }else{
       ONERROR tmp;
       SET_ONERROR(tmp,exit_on_error,"Error in handle_error in master object!");
-      assign_svalue_no_free(sp, & throw_value);
-      sp++;
+      push_svalue(& throw_value);
       APPLY_MASTER("handle_error", 1);
       pop_stack();
       UNSET_ONERROR(tmp);
@@ -357,6 +356,8 @@ void low_exit_main(void)
   cleanup_compiler();
 
   do_gc();
+  free_svalue(& throw_value);
+  throw_value.type=T_INT;
 
   cleanup_callbacks();
 #if defined(DEBUG) && defined(DEBUG_MALLOC)
-- 
GitLab