diff options
author | Greg Clayton <gclayton@apple.com> | 2013-05-22 00:10:28 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-05-22 00:10:28 +0000 |
commit | 8caea6db7157509d34d73643745bd6c6915f48a7 (patch) | |
tree | 213e98a3da2e4fdb42c13087c407407722c31022 /lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp | |
parent | 23386cb1df99cd8ec72e6e36e710959173d3f26b (diff) | |
download | bcm5719-llvm-8caea6db7157509d34d73643745bd6c6915f48a7.tar.gz bcm5719-llvm-8caea6db7157509d34d73643745bd6c6915f48a7.zip |
<rdar://problem/13455021>
Another fix to make sure that if we aren't able to extract an object file for any reason, we don't crash when trying to parse the debug map info.
llvm-svn: 182441
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp index 3afe396f223..61f95f355cf 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp @@ -54,6 +54,8 @@ SymbolFileDWARFDebugMap::CompileUnitInfo::GetFileRangeMap(SymbolFileDWARFDebugMa return file_range_map; ObjectFile *oso_objfile = oso_module->GetObjectFile(); + if (!oso_objfile) + return file_range_map; Log *log (LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP)); if (log) |