aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-02-01 23:54:05 +0000
committerwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-02-01 23:54:05 +0000
commit3a9a38a29e1cad32d33a239f999c207d513471e0 (patch)
tree690b32dcd54dcaca4ab3aff11ce834ca53bb19ba /src
parentOnly use the segments that contain sections in the identifer calculation. (diff)
downloadbreakpad-3a9a38a29e1cad32d33a239f999c207d513471e0.tar.xz
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
Diffstat (limited to 'src')
-rw-r--r--src/processor/minidump_processor.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/processor/minidump_processor.cc b/src/processor/minidump_processor.cc
index e1dd5e1c..f2852c9b 100644
--- a/src/processor/minidump_processor.cc
+++ b/src/processor/minidump_processor.cc
@@ -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;