quartz: Assign to structs instead of using CopyMemory

Andrew Talbot andrew.talbot at talbotville.com
Sat Mar 29 06:37:20 CDT 2008


Changelog:
    quartz: Assign to structs instead of using CopyMemory.

diff --git a/dlls/quartz/enumpins.c b/dlls/quartz/enumpins.c
index 65e6759..61e42b0 100644
--- a/dlls/quartz/enumpins.c
+++ b/dlls/quartz/enumpins.c
@@ -45,7 +45,7 @@ HRESULT IEnumPinsImpl_Construct(const ENUMPINDETAILS * pDetails, IEnumPins ** pp
     pEnumPins->lpVtbl = &IEnumPinsImpl_Vtbl;
     pEnumPins->refCount = 1;
     pEnumPins->uIndex = 0;
-    CopyMemory(&pEnumPins->enumPinDetails, pDetails, sizeof(ENUMPINDETAILS));
+    pEnumPins->enumPinDetails = *pDetails;
     *ppEnum = (IEnumPins *)(&pEnumPins->lpVtbl);
 
     TRACE("Created new enumerator (%p)\n", *ppEnum);
diff --git a/dlls/quartz/filesource.c b/dlls/quartz/filesource.c
index c75f9a2..d922081 100644
--- a/dlls/quartz/filesource.c
+++ b/dlls/quartz/filesource.c
@@ -237,8 +237,8 @@ static HRESULT GetClassMediaFile(IAsyncReader * pReader, LPCOLESTR pszFileName,
 
     TRACE("(%p, %s, %p, %p)\n", pReader, debugstr_w(pszFileName), majorType, minorType);
 
-    CopyMemory(majorType, &GUID_NULL, sizeof(*majorType));
-    CopyMemory(minorType, &GUID_NULL, sizeof(*minorType));
+    *majorType = GUID_NULL;
+    *minorType = GUID_NULL;
 
     lRet = RegOpenKeyExW(HKEY_CLASSES_ROOT, wszMediaType, 0, KEY_READ, &hkeyMediaType);
     hr = HRESULT_FROM_WIN32(lRet);



More information about the wine-patches mailing list