1
0

fixed comparison of thread handle to Null point rather than null handle

This commit is contained in:
Tycho Bickerstaff 2013-12-10 18:43:54 +00:00
parent 5d2311bcff
commit c217ab5168

View File

@ -124,7 +124,7 @@ void cIsThread::Stop(void)
bool cIsThread::Wait(void) bool cIsThread::Wait(void)
{ {
if (m_Handle == NULL) if (m_Handle == NULL_HANDLE)
{ {
return true; return true;
} }