From 4454fbac5e9aa3d1f7b6705b97ff222def33934a Mon Sep 17 00:00:00 2001 From: Ron Pinkas Date: Mon, 16 Jul 2001 10:03:05 +0000 Subject: [PATCH] 2001-07-16 03:00 UTC-0800 Ron Pinkas * source/vm/hvm.c + Added call to hb_pp_Free() in hb_vmQuit() to release pp tables if loaded by macro evaluation. --- harbour/ChangeLog | 4 ++++ harbour/source/vm/hvm.c | 1 + 2 files changed, 5 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b04ce8065c..acbd83d545 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2001-07-16 03:00 UTC-0800 Ron Pinkas + * source/vm/hvm.c + + Added call to hb_pp_Free() in hb_vmQuit() to release pp tables if loaded by macro evaluation. + 2001-07-16 02:45 UTC-0800 Ron Pinkas * source/vm/hvm.c * Few improvements to recent support for lists in macro expansion diff --git a/harbour/source/vm/hvm.c b/harbour/source/vm/hvm.c index 297d837b6f..9f382e147a 100644 --- a/harbour/source/vm/hvm.c +++ b/harbour/source/vm/hvm.c @@ -391,6 +391,7 @@ void hb_vmQuit( void ) { hb_xfree( (void*) hb_vm_aiMacroListParameters ); } + hb_pp_Free(); s_uiActionRequest = 0; /* EXIT procedures should be processed */ hb_vmDoExitFunctions(); /* process defined EXIT functions */