Files
clang-p2996/lldb/source/Plugins/ObjectFile
Jonas Devlieghere e846fb4803 [lldb] Prevent passing a nullptr to std::string in ObjectFileMachO (#100421)
Prevent passing a nullptr to std::string::insert in
ObjectFileMachO::GetDependentModules. Calling GetCString on an empty
ConstString will return a nullptr, which is undefined behavior. Instead,
use the GetString helper which will return an empty string in that case.

rdar://132388027
2024-07-24 15:07:38 -07:00
..