2007-07-24 14:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/debug/dbgentry.c
    ! cleaned memory leak in not freed trap on debugger exit
This commit is contained in:
Przemyslaw Czerpak
2007-07-24 12:35:45 +00:00
parent 6d9a3da276
commit dec314f5ba
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-07-24 14:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/debug/dbgentry.c
! cleaned memory leak in not freed trap on debugger exit
2007-07-20 18:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/libct/Makefile
* harbour/contrib/libct/makefile.bc

View File

@@ -1472,6 +1472,11 @@ hb_dbgQuit( HB_DEBUGINFO *info )
}
ARRAY_DEL( HB_MODULEINFO, info->aModules, info->nModules, nModules );
}
if ( info->bToCursor )
{
info->bToCursor = FALSE;
FREE( info->szToCursorModule );
}
}