From eee511f1df383822204a7a214367daded6560dd1 Mon Sep 17 00:00:00 2001 From: nealsid Date: Thu, 29 Apr 2010 22:32:32 +0000 Subject: Fix dependency on Visual C++ 9 introduced by revision 557. A=nealsid r=mmentovai http://breakpad.appspot.com/105001/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@580 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/windows/handler/exception_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc index 0cc7af52..7bccc428 100644 --- a/src/client/windows/handler/exception_handler.cc +++ b/src/client/windows/handler/exception_handler.cc @@ -489,7 +489,7 @@ void ExceptionHandler::HandleInvalidParameter(const wchar_t* expression, CONTEXT exception_context = {}; EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context }; RtlCaptureContext(&exception_context); - exception_record.ExceptionCode = STATUS_INVALID_CRUNTIME_PARAMETER; + exception_record.ExceptionCode = STATUS_NONCONTINUABLE_EXCEPTION; // We store pointers to the the expression and function strings, // and the line as exception parameters to make them easy to -- cgit v1.2.1