diff options
author | nealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-29 22:32:32 +0000 |
---|---|---|
committer | nealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-29 22:32:32 +0000 |
commit | eee511f1df383822204a7a214367daded6560dd1 (patch) | |
tree | 21ba2527d9af6409665dd5e7dc34cd7276fecc7f /src | |
parent | Fix assembly in the ARM sys_clone implementation to indicate that r7 is clobb... (diff) | |
download | breakpad-eee511f1df383822204a7a214367daded6560dd1.tar.xz |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/client/windows/handler/exception_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 |