[WS2_32_APITEST] Fix uninitialized variable

This commit is contained in:
Timo Kreuzer 2022-08-14 22:40:39 +02:00
parent f71940efb1
commit 866918c785

View file

@ -133,7 +133,7 @@ START_TEST(bind)
int Error;
CHAR LocalHostName[128];
struct hostent *Hostent;
IN_ADDR Address;
IN_ADDR Address = { 0 };
SOCKET Socket;
struct sockaddr_in Addr = { AF_INET };