2008-10-02 15:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/vm/extrap.c
    + Upped internal buffer to store the exception dump 
      and stack trace.
This commit is contained in:
Viktor Szakats
2008-10-02 13:20:00 +00:00
parent ffd9b480a4
commit 3271afe446
2 changed files with 6 additions and 1 deletions

View File

@@ -8,6 +8,11 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-10-02 15:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/vm/extrap.c
+ Upped internal buffer to store the exception dump
and stack trace.
2008-10-02 14:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbstack.h
% enable assembler inline function to access HVM thread stack pointer

View File

@@ -88,7 +88,7 @@
LONG WINAPI hb_win32ExceptionHandler( struct _EXCEPTION_POINTERS * pExceptionInfo )
{
char msg[ ( HB_SYMBOL_NAME_LEN + HB_SYMBOL_NAME_LEN + 32 ) * 32 ];
char msg[ ( HB_SYMBOL_NAME_LEN + HB_SYMBOL_NAME_LEN + 32 ) * 128 ];
char buffer[ HB_SYMBOL_NAME_LEN + HB_SYMBOL_NAME_LEN + 5 ];
char file[ _POSIX_PATH_MAX + 1 ];
char * ptr;