mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-01-11 04:15:33 +00:00
Don't fail the minidump processing if the requesting thread can't be found.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@116 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
87d965538b
commit
3a9a38a29e
|
@ -181,7 +181,8 @@ MinidumpProcessor::ProcessResult MinidumpProcessor::Process(
|
||||||
|
|
||||||
// If a requesting thread was indicated, it must be present.
|
// If a requesting thread was indicated, it must be present.
|
||||||
if (has_requesting_thread && !found_requesting_thread) {
|
if (has_requesting_thread && !found_requesting_thread) {
|
||||||
return PROCESS_ERROR;
|
// Don't mark as an error, but invalidate the requesting thread
|
||||||
|
process_state->requesting_thread_ = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return PROCESS_OK;
|
return PROCESS_OK;
|
||||||
|
|
Loading…
Reference in a new issue