Evil: remove unsused variable

SVN revision: 64591
This commit is contained in:
Vincent Torri 2011-10-31 23:54:25 +00:00
parent fad8b29ec1
commit 7eb2854dcf
1 changed files with 0 additions and 7 deletions

View File

@ -318,7 +318,6 @@ int
evil_pipe(int *fds)
{
struct sockaddr_in saddr;
struct timeval tv;
SOCKET temp;
SOCKET socket1 = INVALID_SOCKET;
SOCKET socket2 = INVALID_SOCKET;
@ -367,9 +366,6 @@ evil_pipe(int *fds)
FD_ZERO (&read_set);
FD_SET (temp, &read_set);
tv.tv_sec = 0;
tv.tv_usec = 0;
if (select (0, &read_set, NULL, NULL, NULL) == SOCKET_ERROR)
goto out1;
@ -383,9 +379,6 @@ evil_pipe(int *fds)
FD_ZERO (&write_set);
FD_SET (socket1, &write_set);
tv.tv_sec = 0;
tv.tv_usec = 0;
if (select (0, NULL, &write_set, NULL, NULL) == SOCKET_ERROR)
goto out2;