diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-20 16:59:00 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-20 16:59:00 +0100 |
commit | 0fa481dabf620181c852f43923a3c4b049294ab4 (patch) | |
tree | dd4c7763ebec771f4407ac07f8f0cb1f420737fb /src/semaphore.cc | |
parent | 03ee8f797ddf8ba4701e394998a28aa7ee5c7ffb (diff) |
Fix numeric limits and uninitialised warnings.
Diffstat (limited to 'src/semaphore.cc')
-rw-r--r-- | src/semaphore.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/semaphore.cc b/src/semaphore.cc index 47ce8e0..3f5781f 100644 --- a/src/semaphore.cc +++ b/src/semaphore.cc @@ -28,6 +28,8 @@ #include <hugin.hpp> +#include <limits> + #ifdef WIN32 #include <windows.h> #else @@ -53,7 +55,7 @@ Semaphore::Semaphore(const char *name) #ifdef WIN32 prv->semaphore = CreateSemaphore(NULL, // default security attributes 0, // initial count - 2147483647, // maximum count (Max LONG) + std::numeric_limits<LONG>::max(), NULL); // unnamed semaphore #else sem_init(&prv->semaphore, 0, 0); @@ -70,7 +72,7 @@ Semaphore::~Semaphore() sem_destroy(&prv->semaphore); #endif - if(prv) delete prv; + delete prv; } void Semaphore::post() |