Skip to content

Commit

Permalink
Fix use of uninitialised variable in class Event
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeno- committed May 1, 2016
1 parent c957346 commit c1a0ebb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions src/threading/event.cpp
Expand Up @@ -25,17 +25,20 @@ DEALINGS IN THE SOFTWARE.

#include "threading/event.h"

#if __cplusplus < 201103L
Event::Event()
: notified(false)
{
#ifdef _WIN32
#if __cplusplus < 201103L
# ifdef _WIN32
event = CreateEvent(NULL, false, false, NULL);
#else
# else
pthread_cond_init(&cv, NULL);
pthread_mutex_init(&mutex, NULL);
# endif
#endif
}

#if __cplusplus < 201103L
Event::~Event()
{
#ifdef _WIN32
Expand Down
2 changes: 1 addition & 1 deletion src/threading/event.h
Expand Up @@ -48,8 +48,8 @@ DEALINGS IN THE SOFTWARE.
*/
class Event {
public:
#if __cplusplus < 201103L
Event();
#if __cplusplus < 201103L
~Event();
#endif
void wait();
Expand Down

0 comments on commit c1a0ebb

Please sign in to comment.