From 257011b44090b91914777d9acee4c2b4ff9412bf Mon Sep 17 00:00:00 2001 From: tycho Date: Sat, 27 Jun 2015 12:10:24 +0100 Subject: use atomic for state, to avoid torn reads --- src/ClientHandle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 13b5f87e4..dc448fc11 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -23,7 +23,7 @@ #include - +#include // fwd: @@ -447,7 +447,7 @@ private: // TODO: Add Kicking here as well } ; - eState m_State; + std::atomic m_State; /** m_State needs to be locked in the Destroy() function so that the destruction code doesn't run twice on two different threads */ cCriticalSection m_CSDestroyingState; -- cgit v1.2.3