<rdar://problem/11357711>
Fixed a crasher where the section load list was not thread safe.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@159884 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBTarget.cpp b/source/API/SBTarget.cpp
index 1b2b948..ddd8f18 100644
--- a/source/API/SBTarget.cpp
+++ b/source/API/SBTarget.cpp
@@ -2137,7 +2137,7 @@
}
else
{
- target_sp->GetSectionLoadList().SetSectionLoadAddress (section_sp.get(), section_base_addr);
+ target_sp->GetSectionLoadList().SetSectionLoadAddress (section_sp, section_base_addr);
}
}
}
@@ -2163,7 +2163,7 @@
}
else
{
- target_sp->GetSectionLoadList().SetSectionUnloaded (section.GetSP().get());
+ target_sp->GetSectionLoadList().SetSectionUnloaded (section.GetSP());
}
}
else
@@ -2233,7 +2233,7 @@
{
SectionSP section_sp (section_list->GetSectionAtIndex(sect_idx));
if (section_sp)
- target_sp->GetSectionLoadList().SetSectionUnloaded (section_sp.get());
+ target_sp->GetSectionLoadList().SetSectionUnloaded (section_sp);
}
}
else