Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
17871709
Commit
17871709
authored
Aug 16, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32/tests: Fix a test failure in test_GetAddrInfoExW().
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9572c208
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
protocol.c
dlls/ws2_32/tests/protocol.c
+3
-1
No files found.
dlls/ws2_32/tests/protocol.c
View file @
17871709
...
...
@@ -1910,7 +1910,9 @@ static void test_GetAddrInfoExW(void)
ResetEvent
(
event
);
ret
=
pGetAddrInfoExW
(
localhost
,
NULL
,
NS_DNS
,
NULL
,
NULL
,
&
result
,
NULL
,
&
overlapped
,
NULL
,
NULL
);
ok
(
ret
==
ERROR_IO_PENDING
,
"GetAddrInfoExW failed with %d
\n
"
,
WSAGetLastError
());
ok
(
!
result
,
"result != NULL
\n
"
);
/* result pointer is cleared by GetAddrInfoExW(), but may be set to the
* actual addrinfo before we can verify that */
ok
(
result
!=
(
void
*
)
0xdeadbeef
,
"result was not changed
\n
"
);
ok
(
WaitForSingleObject
(
event
,
1000
)
==
WAIT_OBJECT_0
,
"wait failed
\n
"
);
ret
=
pGetAddrInfoExOverlappedResult
(
&
overlapped
);
ok
(
!
ret
,
"overlapped result is %d
\n
"
,
ret
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment