From 9c30407f7f2c6e6a352cd62fe4be21fe55ee1879 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Tue, 19 Oct 2010 13:12:29 +0000 Subject: Double stack scanning length in stackwalker R=jimb at http://breakpad.appspot.com/215001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@715 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/google_breakpad/processor/stackwalker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/google_breakpad') diff --git a/src/google_breakpad/processor/stackwalker.h b/src/google_breakpad/processor/stackwalker.h index 8dd2a971..6822f16a 100644 --- a/src/google_breakpad/processor/stackwalker.h +++ b/src/google_breakpad/processor/stackwalker.h @@ -121,7 +121,7 @@ class Stackwalker { bool ScanForReturnAddress(InstructionType location_start, InstructionType *location_found, InstructionType *ip_found) { - const int kRASearchWords = 15; + const int kRASearchWords = 30; for (InstructionType location = location_start; location <= location_start + kRASearchWords * sizeof(InstructionType); location += sizeof(InstructionType)) { -- cgit v1.2.1