Module: wine Branch: master Commit: dfa88a21c95c55f0bf7ca659f852315b08499647 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dfa88a21c95c55f0bf7ca659f8...
Author: Marcus Meissner marcus@jet.franken.de Date: Sun Jan 20 13:09:41 2013 +0100
dmusic: Actually return the allocated interface (Coverity).
---
dlls/dmusic/download.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dmusic/download.c b/dlls/dmusic/download.c index b306513..cc2b024 100644 --- a/dlls/dmusic/download.c +++ b/dlls/dmusic/download.c @@ -101,6 +101,6 @@ HRESULT DMUSIC_CreateDirectMusicDownloadImpl(const GUID *guid, void **ret_iface,
download->IDirectMusicDownload_iface.lpVtbl = &DirectMusicDownload_Vtbl; download->ref = 1; - + *ret_iface = download; return S_OK; }