diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-10-19 13:12:29 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-10-19 13:12:29 +0000 |
commit | 9c30407f7f2c6e6a352cd62fe4be21fe55ee1879 (patch) | |
tree | ef5d568d675e19955e60d8114851cb7bbd309bda /src/google_breakpad | |
parent | Add static version of map wrappers and corresponding serializers. (diff) | |
download | breakpad-9c30407f7f2c6e6a352cd62fe4be21fe55ee1879.tar.xz |
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
Diffstat (limited to 'src/google_breakpad')
-rw-r--r-- | src/google_breakpad/processor/stackwalker.h | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |