Commit 7b512161 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ntdll: Also initialize icmp_over_dgram in sock_read().

Fixes a regression introduced by commit 1e35966e. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52429
parent ef79843c
......@@ -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 = is_icmp_over_dgram( fd );
return sock_recv( handle, event, apc, apc_user, io, fd, async, 1 );
}
......
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