Module: wine Branch: master Commit: 190d7e74ec0ba503a5680592081ee03ff81fbe71 URL: http://source.winehq.org/git/wine.git/?a=commit;h=190d7e74ec0ba503a568059208...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Oct 19 11:44:20 2009 +0200
ws2_32: Set Information to 0 upon completion of an async shutdown.
---
dlls/ws2_32/socket.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 7c81bc9..a8d3efc 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -1503,6 +1503,7 @@ static NTSTATUS WS2_async_shutdown( void* user, PIO_STATUS_BLOCK iosb, NTSTATUS break; } iosb->u.Status = status; + iosb->Information = 0; *apc = ws2_async_apc; return status; }