Module: wine Branch: master Commit: c1c970e0906d3bc6b193d875b67633fff02e8f8e URL: http://source.winehq.org/git/wine.git/?a=commit;h=c1c970e0906d3bc6b193d875b6...
Author: Andrew Talbot andrew.talbot@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;