From: Michael Stefaniuc Subject: dsound: Avoid using the COM method implementations directly. Message-Id: <20160902083733.GA23307@redhat.com> Date: Fri, 2 Sep 2016 10:37:33 +0200 Signed-off-by: Michael Stefaniuc --- dlls/dsound/capture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c index 30870ae..38e3045 100644 --- a/dlls/dsound/capture.c +++ b/dlls/dsound/capture.c @@ -861,7 +861,7 @@ static ULONG DirectSoundCaptureDevice_Release( LeaveCriticalSection(&DSOUND_capturers_lock); if (device->capture_buffer) - IDirectSoundCaptureBufferImpl_Release(&device->capture_buffer->IDirectSoundCaptureBuffer8_iface); + IDirectSoundCaptureBuffer8_Release(&device->capture_buffer->IDirectSoundCaptureBuffer8_iface); if(device->mmdevice) IMMDevice_Release(device->mmdevice); -- 2.7.4