windowscodecs: Remove unneeded address-of operator from array name.
This commit is contained in:
parent
5f3f2173f9
commit
c31909e894
|
@ -1140,7 +1140,7 @@ static HRESULT WINAPI GifDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p
|
|||
|
||||
seek.QuadPart = 0;
|
||||
IStream_Seek(pIStream, seek, STREAM_SEEK_SET, NULL);
|
||||
IStream_Read(pIStream, &This->LSD_data, sizeof(This->LSD_data), NULL);
|
||||
IStream_Read(pIStream, This->LSD_data, sizeof(This->LSD_data), NULL);
|
||||
|
||||
This->initialized = TRUE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue