mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WS2_32_APITEST] Fix uninitialized variable
This commit is contained in:
parent
f71940efb1
commit
866918c785
1 changed files with 1 additions and 1 deletions
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Reference in a new issue