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
cfa808f8
Commit
cfa808f8
authored
Aug 10, 2018
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wsdapi: Use the ARRAY_SIZE() macro.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a625ddbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
address.c
dlls/wsdapi/address.c
+2
-2
No files found.
dlls/wsdapi/address.c
View file @
cfa808f8
...
...
@@ -150,7 +150,7 @@ static HRESULT WINAPI IWSDUdpAddressImpl_GetTransportAddressEx(IWSDUdpAddress *T
switch
(((
SOCKADDR_IN
*
)
&
impl
->
sockAddr
)
->
sin_family
)
{
case
AF_INET
:
size
=
sizeof
(
impl
->
ipv4Address
)
/
sizeof
(
WCHAR
);
size
=
ARRAY_SIZE
(
impl
->
ipv4Address
);
if
(
WSAAddressToStringW
((
LPSOCKADDR
)
&
impl
->
sockAddr
,
sizeof
(
SOCKADDR_IN
),
NULL
,
impl
->
ipv4Address
,
&
size
)
==
0
)
{
...
...
@@ -161,7 +161,7 @@ static HRESULT WINAPI IWSDUdpAddressImpl_GetTransportAddressEx(IWSDUdpAddress *T
break
;
case
AF_INET6
:
size
=
sizeof
(
impl
->
ipv6Address
)
/
sizeof
(
WCHAR
);
size
=
ARRAY_SIZE
(
impl
->
ipv6Address
);
/* Copy the SOCKADDR structure so we can remove the scope ID if not required */
memcpy
(
&
storage
,
&
impl
->
sockAddr
,
sizeof
(
SOCKADDR_IN6
));
...
...
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