From 3a9a38a29e1cad32d33a239f999c207d513471e0 Mon Sep 17 00:00:00 2001 From: waylonis Date: Thu, 1 Feb 2007 23:54:05 +0000 Subject: 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 --- src/processor/minidump_processor.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- cgit v1.2.1