From 2780a5768adda9734889d9c43d56e2f74ecc4fad Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 27 Aug 2013 01:49:46 -0700 Subject: [PATCH] Fix another regression. --- Subtrees/beast/modules/beast_core/thread/detail/ScopedLock.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Subtrees/beast/modules/beast_core/thread/detail/ScopedLock.h b/Subtrees/beast/modules/beast_core/thread/detail/ScopedLock.h index 97045032d0..e7665f6ddf 100644 --- a/Subtrees/beast/modules/beast_core/thread/detail/ScopedLock.h +++ b/Subtrees/beast/modules/beast_core/thread/detail/ScopedLock.h @@ -181,6 +181,7 @@ public: inline explicit UntrackedScopedTryLock (Mutex const& mutex, char const*, int) noexcept : m_mutex (mutex) + , m_lock_count (0) { try_lock (); }