diff options
author | jschuh@chromium.org <jschuh@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-10-19 18:53:26 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-10-19 18:53:26 +0000 |
commit | 96c69639ee2f806b181f4923c3a8e35ba2f25473 (patch) | |
tree | 659139146e35c5822d0245e37af998b58eece8b0 /src/processor | |
parent | Issue 35001: Fallback to Thread Context on bad Exception Context (diff) | |
download | breakpad-96c69639ee2f806b181f4923c3a8e35ba2f25473.tar.xz |
Fixed style error
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@419 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor')
-rw-r--r-- | src/processor/minidump_processor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/minidump_processor.cc b/src/processor/minidump_processor.cc index f22320cb..0ce19e38 100644 --- a/src/processor/minidump_processor.cc +++ b/src/processor/minidump_processor.cc @@ -171,7 +171,7 @@ ProcessResult MinidumpProcessor::Process( // would not result in the expected stack trace from the time of the // crash. If the exception context is invalid, however, we fall back // on the thread context. - MinidumpContext * ctx = exception->GetContext(); + MinidumpContext *ctx = exception->GetContext(); context = ctx ? ctx : thread->GetContext(); } } |