From 15b31b81ae50ed727fa0e074d416700bb46f422e Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 13 Oct 2008 22:02:59 +0000 Subject: [PATCH] 2008-10-14 00:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/dynlibhb.c ! fixed HB_LIBFREE() return value - thanks to Enrico --- harbour/ChangeLog | 4 ++++ harbour/source/vm/dynlibhb.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f916e8ed2a..bc7798440b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-14 00:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/vm/dynlibhb.c + ! fixed HB_LIBFREE() return value - thanks to Enrico + 2008-10-13 22:27 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * tests/transtst.prg * doc/en/string.txt diff --git a/harbour/source/vm/dynlibhb.c b/harbour/source/vm/dynlibhb.c index fd70b212dc..c954a4b4fe 100644 --- a/harbour/source/vm/dynlibhb.c +++ b/harbour/source/vm/dynlibhb.c @@ -149,7 +149,7 @@ HB_FUNC( HB_LIBFREE ) } hb_vmUnlockModuleSymbols(); } - hb_retl( FALSE ); + hb_retl( fResult ); } HB_FUNC( HB_LIBERROR )