urlmon: Remove unneeded address-of operator from array name

Andrew Talbot andrew.talbot at talbotville.com
Thu Dec 6 16:41:42 CST 2012


Changelog:
    urlmon: Remove unneeded address-of operator from array name.

diff --git a/dlls/urlmon/uri.c b/dlls/urlmon/uri.c
index 0a68b43..90113f2 100644
--- a/dlls/urlmon/uri.c
+++ b/dlls/urlmon/uri.c
@@ -5184,7 +5184,7 @@ static HRESULT WINAPI PersistStream_Load(IPersistStream *iface, IStream *pStm)
     data = heap_alloc(size);
     if(!data)
         return E_OUTOFMEMORY;
-    hr = IStream_Read(pStm, &data->unk1, size-sizeof(DWORD)-2, NULL);
+    hr = IStream_Read(pStm, data->unk1, size-sizeof(DWORD)-2, NULL);
     if(FAILED(hr)) {
         heap_free(data);
         return hr;




More information about the wine-patches mailing list