clang-extra: fix incorrect use of std::lock_guard by adding variable name (identified...
authorConrad Poelman <cpgithub@stellarscience.com>
Tue, 2 Feb 2021 04:59:38 +0000 (05:59 +0100)
committerKadir Cetinkaya <kadircet@google.com>
Tue, 2 Feb 2021 05:02:59 +0000 (06:02 +0100)
`std::lock_guard` is an RAII class that needs a variable name whose scope determines the guard's lifetime. This particular usage lacked a variable name, meaning the guard could be destroyed before the line that it was indented to protect.

This line was identified by building clang with the latest MSVC preview release, which declares the std::lock_guard constructor to be `[[nodiscard]]` to draw attention to such issues.

Reviewed By: kadircet

Differential Revision: https://reviews.llvm.org/D95725

clang-tools-extra/clangd/support/Function.h

index 2cac1b1..936800d 100644 (file)
@@ -51,7 +51,7 @@ public:
     Subscription &operator=(Subscription &&Other) {
       // If *this is active, unsubscribe.
       if (Parent) {
-        std::lock_guard<std::recursive_mutex>(Parent->ListenersMu);
+        std::lock_guard<std::recursive_mutex> Lock(Parent->ListenersMu);
         llvm::erase_if(Parent->Listeners,
                        [&](const std::pair<Listener, unsigned> &P) {
                          return P.second == ListenerID;