Remove redundant S9xNPStopServer call (Brian Friesen)

This stops the socket from being closed twice
This commit is contained in:
OV2 2010-10-04 17:43:45 +02:00
parent 911554bbfa
commit 6df2bb515a
1 changed files with 2 additions and 1 deletions

View File

@ -1035,7 +1035,8 @@ void S9xNPServerLoop (void *)
#ifdef NP_DEBUG #ifdef NP_DEBUG
printf ("SERVER: Server thread exiting @%ld\n", S9xGetMilliTime () - START); printf ("SERVER: Server thread exiting @%ld\n", S9xGetMilliTime () - START);
#endif #endif
S9xNPStopServer (); // OV2: S9xNPStopServer has already been called if we get here
// S9xNPStopServer ();
} }
bool8 S9xNPStartServer (int port) bool8 S9xNPStartServer (int port)