Commit c1c970e0 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent 51f936ad
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment