summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-09-24 21:44:48 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-09-24 21:44:48 +0000
commit50aa4161fe53748e4ed9fc85e57258adc553d6fe (patch)
treea4a4ad087458f34af2a6219fbe603baab824b721
parent60d6953c2b44d0e253a8fed33cc97da40680f645 (diff)
fix for catching wrong crashes
git-svn-id: http://svn.miranda-ng.org/main/trunk@1645 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/CrashDumper/src/exhndlr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CrashDumper/src/exhndlr.cpp b/plugins/CrashDumper/src/exhndlr.cpp
index 45b87f1a54..441df2056f 100644
--- a/plugins/CrashDumper/src/exhndlr.cpp
+++ b/plugins/CrashDumper/src/exhndlr.cpp
@@ -13,8 +13,8 @@ tRtlCaptureContext pRtlCaptureContext = (tRtlCaptureContext)GetProcAddress(hKern
void SetExceptionHandler(void)
{
- if (pAddVectoredExceptionHandler && !exchndlrv)
- exchndlrv = pAddVectoredExceptionHandler(0, myfilterv);
+// if (pAddVectoredExceptionHandler && !exchndlrv)
+// exchndlrv = pAddVectoredExceptionHandler(0, myfilterv);
exchndlr = SetUnhandledExceptionFilter(myfilter);
}