epoll.c: fix warning about potentially uninitialized variable

This commit is contained in:
Bert Belder 2017-09-01 19:11:28 +02:00
parent 32a13c094c
commit 7f7d1240ae

View File

@ -777,7 +777,7 @@ int epoll__afd_poll(SOCKET socket,
return SOCKET_ERROR;
}
status = iosb.Status;
status = iosb_ptr->Status;
}
CloseHandle(event);