aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-09-27 21:02:31 +0000
committermark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-09-27 21:02:31 +0000
commit86643aa4899211f5ba5f2d49f6c38cb5fb069161 (patch)
tree1c4bcba8816d95865e32736d9ebcec44ed895a46
parentLinux/Mac: Add option to omit the CFI section in dump_syms. (diff)
downloadbreakpad-86643aa4899211f5ba5f2d49f6c38cb5fb069161.tar.xz
Fix breakpad/src/tools/mac/crash_report/on_demand_symbol_supplier.mm following
r835. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@836 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r--src/tools/mac/crash_report/on_demand_symbol_supplier.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/mac/crash_report/on_demand_symbol_supplier.mm b/src/tools/mac/crash_report/on_demand_symbol_supplier.mm
index 99d54faf..edcc5ad7 100644
--- a/src/tools/mac/crash_report/on_demand_symbol_supplier.mm
+++ b/src/tools/mac/crash_report/on_demand_symbol_supplier.mm
@@ -293,7 +293,7 @@ bool OnDemandSymbolSupplier::GenerateSymbolFile(const CodeModule *module,
if (dump.SetArchitecture(architecture)) {
std::fstream file([symbol_path fileSystemRepresentation],
std::ios_base::out | std::ios_base::trunc);
- dump.WriteSymbolFile(file);
+ dump.WriteSymbolFile(file, true);
} else {
printf("Architecture %s not available for %s\n",
system_info->cpu.c_str(), name.c_str());