[PATCH] wingstreamer: set target of parameter pointer, not parameter (Coverity)

Marcus Meissner marcus at jet.franken.de
Sun Jul 10 11:50:43 CDT 2011


Hi,

CID 4903

Ciao, Marcus
---
 dlls/winegstreamer/gstdemux.c   |    2 +-
 dlls/wineqtdecoder/qtsplitter.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index c28f9b7..6670d6b 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -1475,7 +1475,7 @@ static HRESULT WINAPI GSTOutPin_DecideAllocator(BaseOutputPin *iface, IMemInputP
     GSTOutPin *This = (GSTOutPin *)iface;
     GSTImpl *GSTfilter = (GSTImpl*)This->pin.pin.pinInfo.pFilter;
 
-    pAlloc = NULL;
+    *pAlloc = NULL;
     if (GSTfilter->pInputPin.pAlloc)
         hr = IMemInputPin_NotifyAllocator(pPin, GSTfilter->pInputPin.pAlloc, FALSE);
     else
diff --git a/dlls/wineqtdecoder/qtsplitter.c b/dlls/wineqtdecoder/qtsplitter.c
index 9787dd3..c50afd3 100644
--- a/dlls/wineqtdecoder/qtsplitter.c
+++ b/dlls/wineqtdecoder/qtsplitter.c
@@ -1220,7 +1220,7 @@ static HRESULT WINAPI QTOutPin_DecideAllocator(BaseOutputPin *iface, IMemInputPi
     QTOutPin *This = (QTOutPin *)iface;
     QTSplitter *QTfilter = (QTSplitter*)This->pin.pin.pinInfo.pFilter;
 
-    pAlloc = NULL;
+    *pAlloc = NULL;
     if (QTfilter->pInputPin.pAlloc)
         hr = IMemInputPin_NotifyAllocator(pPin, QTfilter->pInputPin.pAlloc, FALSE);
     else
-- 
1.7.3.4




More information about the wine-patches mailing list