diff options
-rw-r--r-- | lldb/source/Target/PathMappingList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/PathMappingList.cpp b/lldb/source/Target/PathMappingList.cpp index 345bbed3b14..bf613b07172 100644 --- a/lldb/source/Target/PathMappingList.cpp +++ b/lldb/source/Target/PathMappingList.cpp @@ -176,7 +176,7 @@ PathMappingList::RemapPath (const ConstString &path, ConstString &new_path) cons bool PathMappingList::RemapPath (const char *path, std::string &new_path) const { - if (!m_pairs.empty() || path == NULL || path[0] == '\0') + if (m_pairs.empty() || path == NULL || path[0] == '\0') return false; const_iterator pos, end = m_pairs.end(); |