19991111-10:45 GMT+1 Victor Szel <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
1999-11-11 09:56:28 +00:00
parent b67a978cbc
commit 9acc00f68c
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
19991111-10:45 GMT+1 Victor Szel <info@szelvesz.hu>
* source/rtl/fm.c
! Two casts added to hb_xrealloc().
19991111-06:02 GMT+1 Victor Szel <info@szelvesz.hu>
+ source/rtl/dbedit.prg
source/rtl/dummy.prg

View File

@@ -249,9 +249,9 @@ void * hb_xrealloc( void * pMem, ULONG ulSize ) /* reallocates memory */
( ( PHB_MEMINFO ) pMem )->pNextBlock->pPrevBlock = ( PHB_MEMINFO ) pMem;
if( s_pFirstBlock == pMemBlock )
s_pFirstBlock = pMem;
s_pFirstBlock = ( PHB_MEMINFO ) pMem;
if( s_pLastBlock == pMemBlock )
s_pLastBlock = pMem;
s_pLastBlock = ( PHB_MEMINFO ) pMem;
return ( char * ) pMem + sizeof( HB_MEMINFO );