Skip to content

Commit 6af51e8

Browse files
committed
Use WITH_LOCK in Warnings::Set
The scope of the lock should be limited to just guarding m_warnings as anything listening on `NotifyAlertChanged` may execute code that requires the lock as well.
1 parent bd5d168 commit 6af51e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/node/warnings.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ Warnings::Warnings()
2828
}
2929
bool Warnings::Set(warning_type id, bilingual_str message)
3030
{
31-
LOCK(m_mutex);
32-
const auto& [_, inserted]{m_warnings.insert({id, std::move(message)})};
31+
const auto& [_, inserted]{WITH_LOCK(m_mutex, return m_warnings.insert({id, std::move(message)}))};
3332
if (inserted) uiInterface.NotifyAlertChanged();
3433
return inserted;
3534
}

0 commit comments

Comments
 (0)