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

@@ -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 );
}
}