SERVICE_CreateServiceTable still returned TRUE if CreateThread failed.

This commit is contained in:
Josh DuBois 2001-01-17 21:50:17 +00:00 committed by Alexandre Julliard
parent 598412ed6a
commit ec33cd6959

View file

@ -114,15 +114,9 @@ static BOOL SERVICE_CreateServiceTable( void )
* when installed
*/
service_thread = INVALID_HANDLE_VALUE;
service_thread = CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)SERVICE_Loop,
NULL, 0, NULL );
if ( service_thread == INVALID_HANDLE_VALUE )
{
service_thread = 0;
return FALSE;
}
return TRUE;
return (service_thread != 0);
}
/***********************************************************************