mirror of
https://github.com/glest/glest-source.git
synced 2025-08-13 03:44:00 +02:00
- bugfixes related to cppcheck report
- bugfixes found using valgrind (memory leaks)
This commit is contained in:
@@ -120,10 +120,10 @@ protected:
|
||||
time_t lastThreadedPing;
|
||||
//Mutex pingThreadAccessor;
|
||||
|
||||
Mutex dataSynchAccessorRead;
|
||||
Mutex dataSynchAccessorWrite;
|
||||
Mutex *dataSynchAccessorRead;
|
||||
Mutex *dataSynchAccessorWrite;
|
||||
|
||||
Mutex inSocketDestructorSynchAccessor;
|
||||
Mutex *inSocketDestructorSynchAccessor;
|
||||
bool inSocketDestructor;
|
||||
|
||||
public:
|
||||
@@ -214,7 +214,7 @@ protected:
|
||||
class BroadCastSocketThread : public BaseThread
|
||||
{
|
||||
private:
|
||||
Mutex mutexPauseBroadcast;
|
||||
Mutex *mutexPauseBroadcast;
|
||||
bool pauseBroadcast;
|
||||
|
||||
public:
|
||||
|
Reference in New Issue
Block a user