aboutsummaryrefslogtreecommitdiff
path: root/src/processor
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-26 18:16:35 +0000
committerthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-26 18:16:35 +0000
commitaadace27512aa11a68a739714cc2abd0ed0a33a8 (patch)
tree88bab5039c6f6296b74722b7c91b8f0a5aab4678 /src/processor
parentUpdate Makefile.am from r662 (which only updated Makefile.in) (diff)
downloadbreakpad-aadace27512aa11a68a739714cc2abd0ed0a33a8.tar.xz
Cleanup: Remove a useless check.
Review URL: http://breakpad.appspot.com/174001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@670 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor')
-rw-r--r--src/processor/stackwalker_amd64.cc14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/processor/stackwalker_amd64.cc b/src/processor/stackwalker_amd64.cc
index 38d8fb66..2e70f12d 100644
--- a/src/processor/stackwalker_amd64.cc
+++ b/src/processor/stackwalker_amd64.cc
@@ -130,7 +130,7 @@ StackFrameAMD64 *StackwalkerAMD64::GetCallerByCFIFrameInfo(
last_frame->context, last_frame->context_validity,
&frame->context, &frame->context_validity))
return NULL;
-
+
// Make sure we recovered all the essentials.
static const int essentials = (StackFrameAMD64::CONTEXT_VALID_RIP
| StackFrameAMD64::CONTEXT_VALID_RSP);
@@ -151,17 +151,15 @@ StackFrame* StackwalkerAMD64::GetCallerFrame(const CallStack *stack) {
scoped_ptr<StackFrameAMD64> new_frame;
// If we have DWARF CFI information, use it.
- if (!new_frame.get()) {
- scoped_ptr<CFIFrameInfo> cfi_frame_info(resolver_
- ->FindCFIFrameInfo(last_frame));
- if (cfi_frame_info.get())
- new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
- }
+ scoped_ptr<CFIFrameInfo> cfi_frame_info(
+ resolver_->FindCFIFrameInfo(last_frame));
+ if (cfi_frame_info.get())
+ new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
// If nothing worked, tell the caller.
if (!new_frame.get())
return NULL;
-
+
// Treat an instruction address of 0 as end-of-stack.
if (new_frame->context.rip == 0)
return NULL;