diff options
author | Fangrui Song <i@maskray.me> | 2022-12-18 01:15:25 +0000 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-12-18 01:15:25 +0000 |
commit | fbaf48be0ff6fb24b9aa8fe9c2284fe88a8798dd (patch) | |
tree | 735c071463e87ff80c30d1bb2b4528fc8aa1a8a9 /lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | |
parent | a3400191137e7c991b89ebe72211790dae1648a1 (diff) | |
download | llvm-fbaf48be0ff6fb24b9aa8fe9c2284fe88a8798dd.zip llvm-fbaf48be0ff6fb24b9aa8fe9c2284fe88a8798dd.tar.gz llvm-fbaf48be0ff6fb24b9aa8fe9c2284fe88a8798dd.tar.bz2 |
[lldb] Remove redundant .c_str() and .get() calls
Removing .c_str() has a semantics difference, but the use scenarios
likely do not matter as we don't have NUL in the strings.
Diffstat (limited to 'lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index 09dd94d..9c635c0 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -644,7 +644,7 @@ bool DynamicLoaderDarwinKernel::KextImageInfo::ReadMemoryModule( if (m_load_address == LLDB_INVALID_ADDRESS) return false; - FileSpec file_spec(m_name.c_str()); + FileSpec file_spec(m_name); llvm::MachO::mach_header mh; size_t size_to_read = 512; @@ -785,7 +785,7 @@ bool DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule( PlatformDarwinKernel::GetPluginNameStatic()); if (platform_sp->GetPluginName() == g_platform_name.GetStringRef()) { ModuleSpec kext_bundle_module_spec(module_spec); - FileSpec kext_filespec(m_name.c_str()); + FileSpec kext_filespec(m_name); FileSpecList search_paths = target.GetExecutableSearchPaths(); kext_bundle_module_spec.GetFileSpec() = kext_filespec; platform_sp->GetSharedModule(kext_bundle_module_spec, process, |