Commit f542a0c1 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

ws2_32: Fix uninitialized memory access in do_poll (Coverity).

parent 3d51b4eb
......@@ -4800,6 +4800,7 @@ static int do_poll(struct pollfd *pollfds, int count, int timeout)
{
if (errno != EINTR) break;
if (timeout < 0) continue;
if (timeout == 0) return 0;
gettimeofday( &tv2, 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment