2009-09-23 14:30 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)

* contrib/hbmemio/memio.c
    ! fixed cleanup code
This commit is contained in:
Mindaugas Kavaliauskas
2009-09-23 11:33:00 +00:00
parent 437754c513
commit 86c8a6a2bc
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-23 14:30 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* contrib/hbmemio/memio.c
! fixed cleanup code
2009-09-23 00:13 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* contrib/hbmemio/memio.c
! fixed typo in hb_memfsDelete()

View File

@@ -149,7 +149,7 @@ static void memfsInit( void )
s_fs.ulCount = 0;
s_fs.ulAlloc = HB_MEMFS_INITSIZE;
s_fs.pInodes = ( PHB_MEMFS_INODE * ) hb_xgrab( sizeof( PHB_MEMFS_INODE ) * s_fs.ulAlloc );
hb_vmAtExit( memfsExit, NULL );
hb_vmAtQuit( memfsExit, NULL );
}