[Lldb-commits] [lldb] r170068 - /lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
Jason Molenda
jmolenda at apple.com
Wed Dec 12 17:13:00 PST 2012
Author: jmolenda
Date: Wed Dec 12 19:13:00 2012
New Revision: 170068
URL: http://llvm.org/viewvc/llvm-project?rev=170068&view=rev
Log:
Remove insufficient linkedit address check; the problem
is deeper than that and avoiding the crash in this
one part of code won't solve anything. I know where
the real problem is now.
Modified:
lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
Modified: lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp?rev=170068&r1=170067&r2=170068&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp (original)
+++ lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp Wed Dec 12 19:13:00 2012
@@ -1326,7 +1326,7 @@
// data across can slow down debug launch times, so we optimize this by
// reading the memory for the __LINKEDIT section from this process.
PlatformSP platform_sp (target.GetPlatform());
- if (platform_sp && platform_sp->IsHost() && linkedit_load_addr != LLDB_INVALID_ADDRESS)
+ if (platform_sp && platform_sp->IsHost())
{
data_was_read = true;
nlist_data.SetData((void *)symoff_addr, nlist_data_byte_size, eByteOrderLittle);
More information about the lldb-commits
mailing list