1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00

(trunk libT) #2756 "32 byte leak in tr_threadNew()" -- fixed for 1.81

This commit is contained in:
Charles Kerr 2010-01-21 03:14:46 +00:00
parent 18272e65a1
commit 0faaaeaa9a

View file

@ -108,6 +108,7 @@ ThreadFunc( void * _t )
t->func( t->arg );
tr_free( t );
#ifdef WIN32
_endthreadex( 0 );
return 0;