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

This commit is contained in:
Andrew Talbot 2012-12-08 18:36:33 +00:00 committed by Alexandre Julliard
parent 5f3f2173f9
commit c31909e894

View file

@ -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;