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:
waylonis 2007-02-01 23:54:05 +00:00
parent 87d965538b
commit 3a9a38a29e

View file

@ -181,7 +181,8 @@ MinidumpProcessor::ProcessResult MinidumpProcessor::Process(
// If a requesting thread was indicated, it must be present.
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;