mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
hlink: Assign to struct instead of using memcpy.
This commit is contained in:
parent
23dd9dc088
commit
ad606f4d26
1 changed files with 1 additions and 1 deletions
|
@ -602,7 +602,7 @@ static HRESULT WINAPI IPersistStream_fnGetClassID(IPersistStream* iface,
|
|||
{
|
||||
HlinkImpl *This = HlinkImpl_from_IPersistStream(iface);
|
||||
TRACE("(%p)\n", This);
|
||||
memcpy(pClassID, &CLSID_StdHlink, sizeof(CLSID));
|
||||
*pClassID = CLSID_StdHlink;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue