Index: third_party/crashpad/crashpad/snapshot/capture_memory.cc |
diff --git a/third_party/crashpad/crashpad/snapshot/capture_memory.cc b/third_party/crashpad/crashpad/snapshot/capture_memory.cc |
index 0c30311524209dfe89fba005b9957eceda335139..eba6729c31db1e667f8c70f459feed4a46a38a89 100644 |
--- a/third_party/crashpad/crashpad/snapshot/capture_memory.cc |
+++ b/third_party/crashpad/crashpad/snapshot/capture_memory.cc |
@@ -38,9 +38,9 @@ void MaybeCaptureMemoryAround(CaptureMemory::Delegate* delegate, |
if (address > max_address - non_address_offset) |
return; |
- const uint64_t kRegisterByteOffset = 256; |
+ const uint64_t kRegisterByteOffset = 128; |
const uint64_t target = address - kRegisterByteOffset; |
- const uint64_t size = 1024; |
+ const uint64_t size = 512; |
static_assert(kRegisterByteOffset <= size / 2, |
"negative offset too large"); |
auto ranges = |