ChangeLog 19991105-14:07 GMT+1

This commit is contained in:
Ryszard Glab
1999-11-05 12:11:57 +00:00
parent 55b554fa92
commit 8a03566e1c
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
19991105-14:07 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/rtl/codebloc.prg
* memory occupied by detached local variables is properly released now
19991104-23:45 GMT+1 Victor Szel <info@szelvesz.hu>
* source/rtl/filesys.c
! hb_fsSeek() now returns 0 instead of -1 on error, just like Clipper.

View File

@@ -185,7 +185,7 @@ void hb_codeblockDelete( HB_ITEM_PTR pItem )
if( pCBlock->pLocals )
{
USHORT ui = 1;
while( ui < pCBlock->uiLocals )
while( ui <= pCBlock->uiLocals )
{
hb_memvarValueDecRef( pCBlock->pLocals[ ui ].item.asMemvar.value );
++ui;