Commit 40c7031d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

qmgr: Assign to structs instead of using memcpy.

parent 0167d2c8
......@@ -159,7 +159,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_GetId(
GUID *pVal)
{
BackgroundCopyJobImpl *This = (BackgroundCopyJobImpl *) iface;
memcpy(pVal, &This->jobId, sizeof *pVal);
*pVal = This->jobId;
return S_OK;
}
......@@ -460,7 +460,7 @@ HRESULT BackgroundCopyJobConstructor(LPCWSTR displayName, BG_JOB_TYPE type,
HeapFree(GetProcessHeap(), 0, This);
return hr;
}
memcpy(pJobId, &This->jobId, sizeof(GUID));
*pJobId = This->jobId;
list_init(&This->files);
This->jobProgress.BytesTotal = 0;
......
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