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
63c7fd2a
Commit
63c7fd2a
authored
Mar 06, 2015
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpnet: Correct usage of memcpy in GetComponentByName.
parent
b779dee7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
address.c
dlls/dpnet/address.c
+3
-3
address.c
dlls/dpnet/tests/address.c
+1
-1
No files found.
dlls/dpnet/address.c
View file @
63c7fd2a
...
@@ -348,13 +348,13 @@ static HRESULT WINAPI IDirectPlay8AddressImpl_GetComponentByName(IDirectPlay8Add
...
@@ -348,13 +348,13 @@ static HRESULT WINAPI IDirectPlay8AddressImpl_GetComponentByName(IDirectPlay8Add
memcpy
(
pvBuffer
,
&
entry
->
data
.
guid
,
sizeof
(
GUID
));
memcpy
(
pvBuffer
,
&
entry
->
data
.
guid
,
sizeof
(
GUID
));
break
;
break
;
case
DPNA_DATATYPE_STRING
:
case
DPNA_DATATYPE_STRING
:
memcpy
(
pvBuffer
,
&
entry
->
data
.
string
,
entry
->
size
);
memcpy
(
pvBuffer
,
entry
->
data
.
string
,
entry
->
size
);
break
;
break
;
case
DPNA_DATATYPE_STRING_ANSI
:
case
DPNA_DATATYPE_STRING_ANSI
:
memcpy
(
pvBuffer
,
&
entry
->
data
.
ansi
,
entry
->
size
);
memcpy
(
pvBuffer
,
entry
->
data
.
ansi
,
entry
->
size
);
break
;
break
;
case
DPNA_DATATYPE_BINARY
:
case
DPNA_DATATYPE_BINARY
:
memcpy
(
pvBuffer
,
&
entry
->
data
.
binary
,
entry
->
size
);
memcpy
(
pvBuffer
,
entry
->
data
.
binary
,
entry
->
size
);
break
;
break
;
}
}
...
...
dlls/dpnet/tests/address.c
View file @
63c7fd2a
...
@@ -126,7 +126,7 @@ static void address_addcomponents(void)
...
@@ -126,7 +126,7 @@ static void address_addcomponents(void)
hr
=
IDirectPlay8Address_GetComponentByName
(
localaddr
,
DPNA_KEY_HOSTNAME
,
buffer
,
&
size
,
&
type
);
hr
=
IDirectPlay8Address_GetComponentByName
(
localaddr
,
DPNA_KEY_HOSTNAME
,
buffer
,
&
size
,
&
type
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
type
==
DPNA_DATATYPE_STRING
,
"incorrect type %d
\n
"
,
type
);
ok
(
type
==
DPNA_DATATYPE_STRING
,
"incorrect type %d
\n
"
,
type
);
todo_wine
ok
(
!
lstrcmpW
(
buffer
,
localhost
),
"Invalid string: %s
\n
"
,
wine_dbgstr_w
(
buffer
));
ok
(
!
lstrcmpW
(
buffer
,
localhost
),
"Invalid string: %s
\n
"
,
wine_dbgstr_w
(
buffer
));
hr
=
IDirectPlay8Address_AddComponent
(
localaddr
,
DPNA_KEY_PORT
,
&
port
,
sizeof
(
DWORD
)
+
2
,
DPNA_DATATYPE_DWORD
);
hr
=
IDirectPlay8Address_AddComponent
(
localaddr
,
DPNA_KEY_PORT
,
&
port
,
sizeof
(
DWORD
)
+
2
,
DPNA_DATATYPE_DWORD
);
ok
(
hr
==
DPNERR_INVALIDPARAM
,
"got 0x%08x
\n
"
,
hr
);
ok
(
hr
==
DPNERR_INVALIDPARAM
,
"got 0x%08x
\n
"
,
hr
);
...
...
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