mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
elf: don't warn on trailing unread bytes in the elf dynamic array
This warning triggers reliably on most binaries and on android, spams the logcat which may obfuscate other errors. The actual amount varies, but is typically 40 bytes for 32-bit android system libraries, 80 bytes for 64-bit android system libraries, 64 bytes for linux system libraries (on my machine), but so far they're all zeroes. Change-Id: I658434e8290c75641a3b17034ebdd958834bcd69 Reviewed-on: https://chromium-review.googlesource.com/c/1269740 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
9554a89ab6
commit
9b2a119dc6
@ -42,9 +42,6 @@ bool Read(const ProcessMemoryRange& memory,
|
||||
switch (entry.d_tag) {
|
||||
case DT_NULL:
|
||||
values->swap(local_values);
|
||||
if (size != 0) {
|
||||
LOG(WARNING) << size << " trailing bytes not read";
|
||||
}
|
||||
return true;
|
||||
case DT_NEEDED:
|
||||
// Skip these entries for now.
|
||||
|
Loading…
x
Reference in New Issue
Block a user