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

Alexandre Julliard julliard at winehq.org
Fri Dec 7 11:06:43 CST 2012


Module: wine
Branch: master
Commit: c1c970e0906d3bc6b193d875b67633fff02e8f8e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c1c970e0906d3bc6b193d875b67633fff02e8f8e

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Dec  6 22:41:42 2012 +0000

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

---

 dlls/urlmon/uri.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list