From 56727821716f7b18d2c23b715c21fd4cbf03ceeb Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Fri, 4 Nov 2005 21:17:20 +0000 Subject: [PATCH] hb_UnhandledExceptionFilter() modified to return EXCEPTION_CONTINUE_SEARCH --- harbour/source/vm/estack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/source/vm/estack.c b/harbour/source/vm/estack.c index 8b458e3f7c..8082f6a9f5 100644 --- a/harbour/source/vm/estack.c +++ b/harbour/source/vm/estack.c @@ -453,7 +453,7 @@ LONG WINAPI hb_UnhandledExceptionFilter( struct _EXCEPTION_POINTERS * ExceptionI MessageBox( NULL, msg, HB_I_("Harbour Exception"), MB_ICONSTOP ); - return EXCEPTION_EXECUTE_HANDLER; /* EXCEPTION_CONTINUE_SEARCH; */ + return EXCEPTION_CONTINUE_SEARCH; /* EXCEPTION_EXECUTE_HANDLER; */ } #endif