platform: fixed accidental double deref. the method parameter already does that....
[deb_libcec.git] / src / lib / platform / threads / mutex.h
index 6bd126e4c7452b1658e285386e5dd0f106917700..ed60ba8724612fae369e1fd7e9e33ede7877e97e 100644 (file)
@@ -343,11 +343,11 @@ namespace PLATFORM
       return bReturn;
     }
 
-    volatile bool              m_bSignaled;
-    CCondition<volatile bool&> m_condition;
-    CMutex                     m_mutex;
-    volatile bool              m_bBroadcast;
-    unsigned int               m_iWaitingThreads;
-    bool                       m_bAutoReset;
+    volatile bool             m_bSignaled;
+    CCondition<volatile bool> m_condition;
+    CMutex                    m_mutex;
+    volatile bool             m_bBroadcast;
+    unsigned int              m_iWaitingThreads;
+    bool                      m_bAutoReset;
   };
 }