aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-05-09 21:56:18 +0000
committermark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-05-09 21:56:18 +0000
commit09b6b0f8bf3ef1c08d5454481037a2a5fb7f1b72 (patch)
tree928bb4bcc70d6ce79a96eafdeae732732dfab560 /src/common/mac
parentCheck in new Windows binaries. (diff)
downloadbreakpad-09b6b0f8bf3ef1c08d5454481037a2a5fb7f1b72.tar.xz
Fix following r1175: the section name is __debug_info, not .debug_info.
Review URL: https://breakpad.appspot.com/583003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1178 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/mac')
-rw-r--r--src/common/mac/dump_syms.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mac/dump_syms.mm b/src/common/mac/dump_syms.mm
index c8c3a356..113a16c0 100644
--- a/src/common/mac/dump_syms.mm
+++ b/src/common/mac/dump_syms.mm
@@ -276,7 +276,7 @@ bool DumpSymbols::ReadDwarf(google_breakpad::Module *module,
// Find the __debug_info section.
dwarf2reader::SectionMap::const_iterator debug_info_entry =
- file_context.section_map().find(".debug_info");
+ file_context.section_map().find("__debug_info");
assert(debug_info_entry != file_context.section_map().end());
const std::pair<const char*, uint64>& debug_info_section =
debug_info_entry->second;