mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-03-01 18:58:03 +00:00
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
This commit is contained in:
parent
c90769edd6
commit
eee511f1df
|
@ -489,7 +489,7 @@ void ExceptionHandler::HandleInvalidParameter(const wchar_t* expression,
|
||||||
CONTEXT exception_context = {};
|
CONTEXT exception_context = {};
|
||||||
EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context };
|
EXCEPTION_POINTERS exception_ptrs = { &exception_record, &exception_context };
|
||||||
RtlCaptureContext(&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,
|
// We store pointers to the the expression and function strings,
|
||||||
// and the line as exception parameters to make them easy to
|
// and the line as exception parameters to make them easy to
|
||||||
|
|
Loading…
Reference in a new issue