We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebfdc8 commit 081c9c1Copy full SHA for 081c9c1
lldb/source/Target/PathMappingList.cpp
@@ -48,10 +48,10 @@ PathMappingList::PathMappingList(const PathMappingList &rhs)
48
49
const PathMappingList &PathMappingList::operator=(const PathMappingList &rhs) {
50
if (this != &rhs) {
51
- std::scoped_lock<std::mutex, std::mutex> pairs_locks(m_pairs_mutex,
52
- rhs.m_pairs_mutex);
53
std::scoped_lock<std::mutex, std::mutex> callback_locks(
54
m_callback_mutex, rhs.m_callback_mutex);
+ std::scoped_lock<std::mutex, std::mutex> pairs_locks(m_pairs_mutex,
+ rhs.m_pairs_mutex);
55
m_pairs = rhs.m_pairs;
56
m_callback = nullptr;
57
m_callback_baton = nullptr;
0 commit comments