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
c2c0fefb
Commit
c2c0fefb
authored
Sep 13, 2023
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi/tests: Call GetAdaptersAddresses() in a loop.
As shown by the testbot, doubling is not always sufficient.
parent
e802019d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+7
-0
No files found.
dlls/iphlpapi/tests/iphlpapi.c
View file @
c2c0fefb
...
...
@@ -1769,6 +1769,13 @@ static void test_GetAdaptersAddresses(void)
osize
=
size
;
ptr
=
malloc
(
osize
);
ret
=
GetAdaptersAddresses
(
AF_UNSPEC
,
GAA_FLAG_INCLUDE_PREFIX
|
GAA_FLAG_SKIP_FRIENDLY_NAME
,
NULL
,
ptr
,
&
osize
);
while
(
ret
==
ERROR_BUFFER_OVERFLOW
)
{
size
=
osize
*
2
;
osize
=
size
;
ptr
=
realloc
(
ptr
,
osize
);
ret
=
GetAdaptersAddresses
(
AF_UNSPEC
,
GAA_FLAG_INCLUDE_PREFIX
|
GAA_FLAG_SKIP_FRIENDLY_NAME
,
NULL
,
ptr
,
&
osize
);
}
ok
(
!
ret
,
"expected ERROR_SUCCESS got %lu
\n
"
,
ret
);
ok
(
osize
==
size
,
"expected %ld, got %ld
\n
"
,
size
,
osize
);
...
...
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