[PATCH 0/1] MR602: ntdll: Also initialize icmp_over_dgram in sock_read().
Fixes a regression introduced by commit 1e35966eb57db7060d0c459bc7aaac2f6cad7442. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52429 -- https://gitlab.winehq.org/wine/wine/-/merge_requests/602
From: Paul Gofman <pgofman(a)codeweavers.com> Fixes a regression introduced by commit 1e35966eb57db7060d0c459bc7aaac2f6cad7442. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52429 --- dlls/ntdll/unix/socket.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ntdll/unix/socket.c b/dlls/ntdll/unix/socket.c index 18ff23a7399..554405c2c26 100644 --- a/dlls/ntdll/unix/socket.c +++ b/dlls/ntdll/unix/socket.c @@ -974,6 +974,7 @@ NTSTATUS sock_read( HANDLE handle, int fd, HANDLE event, PIO_APC_ROUTINE apc, async->addr = NULL; async->addr_len = NULL; async->ret_flags = NULL; + async->icmp_over_dgram = FALSE; return sock_recv( handle, event, apc, apc_user, io, fd, async, 1 ); } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/602
participants (2)
-
Paul Gofman -
Paul Gofman (@gofman)