Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: src/common/mac/macho_reader.cc

Issue 1369233003: [mac] Teach dump_syms to handle additional zerofill sections (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/common/mac/macho_reader.cc
diff --git a/src/common/mac/macho_reader.cc b/src/common/mac/macho_reader.cc
index 9fcb58e35c2c1dea05f142702cb0160bf8918869..0358f97c5383addef4150be6a2b6c8e129c4d89d 100644
--- a/src/common/mac/macho_reader.cc
+++ b/src/common/mac/macho_reader.cc
@@ -481,7 +481,7 @@ bool Reader::WalkSegmentSections(const Segment &segment,
reporter_->SectionsMissing(segment.name);
return false;
}
- if ((section.flags & SECTION_TYPE) == S_ZEROFILL) {
+ if ((section.flags & SECTION_TYPE) == S_ZEROFILL || (section.flags & SECTION_TYPE) == S_THREAD_LOCAL_ZEROFILL) {
Mark Mentovai 2015/09/28 17:59:20 Don’t go past 80 columns. Break the line after the
// Zero-fill sections have a size, but no contents.
section.contents.start = section.contents.end = NULL;
} else if (segment.contents.start == NULL &&
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698