2008-07-01 20:48 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/vm/extrap.c
     ! Fixed MSVC error in new code.
This commit is contained in:
Viktor Szakats
2008-07-01 18:49:47 +00:00
parent fca9d44fcd
commit edc33edcfd
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-07-01 20:48 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/vm/extrap.c
! Fixed MSVC error in new code.
2008-07-01 19:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* doc/whatsnew.txt
+ Added RC2 changes.

View File

@@ -129,7 +129,7 @@ LONG WINAPI hb_win32ExceptionHandler( struct _EXCEPTION_POINTERS * pExceptionInf
( UINT32 ) pCtx->EFlags );
hb_strncat( errmsg, " CS:EIP:", errmsglen );
pc = ( void * ) pCtx->Eip;
pc = ( unsigned char * ) pCtx->Eip;
for( i = 0; i < 16; i++ )
{
if( IsBadReadPtr( pc, 1 ) )
@@ -138,7 +138,7 @@ LONG WINAPI hb_win32ExceptionHandler( struct _EXCEPTION_POINTERS * pExceptionInf
hb_strncat( errmsg, buf, errmsglen );
}
hb_strncat( errmsg, "\n SS:ESP:", errmsglen );
sc = ( void * ) pCtx->Esp;
sc = ( unsigned int * ) pCtx->Esp;
for( i = 0; i < 16; i++ )
{
if( IsBadReadPtr( sc, 4 ) )