Commit ad606f4d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

hlink: Assign to struct instead of using memcpy.

parent 23dd9dc0
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment