diff options
Diffstat (limited to 'src/google_breakpad/processor')
-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)) { |