Removed uninitialized uSec and its use.

svn path=/trunk/; revision=13204
This commit is contained in:
Art Yerkes 2005-01-22 02:06:56 +00:00
parent e6c8a783fb
commit 7d3a25e1cc

View file

@ -566,7 +566,6 @@ WSPSelect(
NTSTATUS Status; NTSTATUS Status;
ULONG HandleCount, OutCount = 0; ULONG HandleCount, OutCount = 0;
ULONG PollBufferSize; ULONG PollBufferSize;
LARGE_INTEGER uSec;
PVOID PollBuffer; PVOID PollBuffer;
ULONG i, j = 0, x; ULONG i, j = 0, x;
HANDLE SockEvent; HANDLE SockEvent;
@ -599,7 +598,6 @@ WSPSelect(
} else { } else {
PollInfo->Timeout = RtlEnlargedIntegerMultiply PollInfo->Timeout = RtlEnlargedIntegerMultiply
((timeout->tv_sec * 1000) + timeout->tv_usec, -10000); ((timeout->tv_sec * 1000) + timeout->tv_usec, -10000);
PollInfo->Timeout.QuadPart += uSec.QuadPart;
} }
/* Number of handles for AFD to Check */ /* Number of handles for AFD to Check */