ntdll: Unset the WINESERVERSOCKET variable after we have retrieved it.

This commit is contained in:
Alexandre Julliard 2006-11-27 20:05:56 +01:00
parent 4919a76edf
commit e054630979
1 changed files with 1 additions and 0 deletions

View File

@ -934,6 +934,7 @@ void server_init_process(void)
fd_socket = atoi( env_socket );
if (fcntl( fd_socket, F_SETFD, 1 ) == -1)
fatal_perror( "Bad server socket %d", fd_socket );
unsetenv( "WINESERVERSOCKET" );
}
else
{