mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[WS2_32_WINETEST] Fix use of uninitialized variable
This commit is contained in:
parent
91b51f6e9c
commit
c1362c64b0
1 changed files with 1 additions and 0 deletions
|
@ -4694,6 +4694,7 @@ static void test_gethostbyname(void)
|
||||||
he = gethostbyname(name);
|
he = gethostbyname(name);
|
||||||
ok(he != NULL, "gethostbyname(\"%s\") failed: %d\n", name, WSAGetLastError());
|
ok(he != NULL, "gethostbyname(\"%s\") failed: %d\n", name, WSAGetLastError());
|
||||||
#ifdef __REACTOS__ /* ROSTESTS-233 */
|
#ifdef __REACTOS__ /* ROSTESTS-233 */
|
||||||
|
count = 0;
|
||||||
if (he != NULL)
|
if (he != NULL)
|
||||||
{
|
{
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue