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 )