Bugfix: report error creating ThreadSocketHandler thread just like the rest
This commit is contained in:
parent
c7eb151ad0
commit
65ba3e2f50
@ -1713,7 +1713,8 @@ void StartNode(void* parg)
|
||||
printf("Error: CreateThread(ThreadIRCSeed) failed\n");
|
||||
|
||||
// Send and receive from sockets, accept connections
|
||||
CreateThread(ThreadSocketHandler, NULL);
|
||||
if (!CreateThread(ThreadSocketHandler, NULL))
|
||||
printf("Error: CreateThread(ThreadSocketHandler) failed\n");
|
||||
|
||||
// Initiate outbound connections
|
||||
if (!CreateThread(ThreadOpenConnections, NULL))
|
||||
|
Loading…
Reference in New Issue
Block a user