mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-19 00:39:38 +00:00
Keeping track of modules without symbols during crash report processing.
http://breakpad.appspot.com/534002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1126 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -227,9 +227,10 @@ ProcessResult MinidumpProcessor::Process(
|
||||
|
||||
scoped_ptr<CallStack> stack(new CallStack());
|
||||
if (stackwalker.get()) {
|
||||
if (!stackwalker->Walk(stack.get())) {
|
||||
BPLOG(INFO) << "Stackwalker interrupt (missing symbols?) at " <<
|
||||
thread_string;
|
||||
if (!stackwalker->Walk(stack.get(),
|
||||
&process_state->modules_without_symbols_)) {
|
||||
BPLOG(INFO) << "Stackwalker interrupt (missing symbols?) at "
|
||||
<< thread_string;
|
||||
interrupted = true;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user