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

Alexandre Julliard julliard at winehq.org
Mon Dec 10 14:00:38 CST 2012


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Dec  8 18:36:33 2012 +0000

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

---

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

diff --git a/dlls/windowscodecs/gifformat.c b/dlls/windowscodecs/gifformat.c
index 84838e2..8ebcf3d 100644
--- a/dlls/windowscodecs/gifformat.c
+++ b/dlls/windowscodecs/gifformat.c
@@ -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;
 




More information about the wine-cvs mailing list