fix thread handle leak (these don't show up as threads anywhere, but

sysinternals handle.exe shows them)
This commit is contained in:
Glenn Maynard
2005-02-06 10:25:13 +00:00
parent 9c27d12641
commit d38fedfcaa
@@ -55,6 +55,9 @@ int ThreadImpl_Win32::Wait()
DWORD ret;
GetExitCodeThread( ThreadHandle, &ret );
CloseHandle( ThreadHandle );
ThreadHandle = NULL;
return ret;
}