diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c94452250e..7207d0c64a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/source/vm/extrap.c b/harbour/source/vm/extrap.c index 6bf88c90e7..e61f45247d 100644 --- a/harbour/source/vm/extrap.c +++ b/harbour/source/vm/extrap.c @@ -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;