qmgr: Assign to structs instead of using memcpy

Andrew Talbot andrew.talbot at talbotville.com
Sat Mar 8 09:37:09 CST 2008


Changelog:
    qmgr: Assign to structs instead of using memcpy.

diff --git a/dlls/qmgr/job.c b/dlls/qmgr/job.c
index 2a894ba..8768027 100644
--- a/dlls/qmgr/job.c
+++ b/dlls/qmgr/job.c
@@ -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;



More information about the wine-patches mailing list