[PATCH] ws2_32: Correctly null-terminate the addrinfo chain.

Zebediah Figura zfigura at codeweavers.com
Wed Dec 29 12:38:53 CST 2021


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52288
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 dlls/ws2_32/unixlib.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/ws2_32/unixlib.c b/dlls/ws2_32/unixlib.c
index e89ebe35248..56a0bed308d 100644
--- a/dlls/ws2_32/unixlib.c
+++ b/dlls/ws2_32/unixlib.c
@@ -752,6 +752,7 @@ static NTSTATUS unix_getaddrinfo( void *args )
         dst->ai_addrlen = sockaddr_from_unix( (const union unix_sockaddr *)src->ai_addr, NULL, 0 );
         dst->ai_addr = next;
         sockaddr_from_unix( (const union unix_sockaddr *)src->ai_addr, dst->ai_addr, dst->ai_addrlen );
+        dst->ai_next = NULL;
         next = (char *)dst->ai_addr + dst->ai_addrlen;
 
         if (dst == params->info || !addrinfo_in_list( params->info, dst ))
@@ -763,8 +764,6 @@ static NTSTATUS unix_getaddrinfo( void *args )
         }
     }
 
-    dst->ai_next = NULL;
-
     freeaddrinfo( unix_info );
     return 0;
 #else
-- 
2.34.1




More information about the wine-devel mailing list