winecoreaudio: Release the critical section in the no interface case.
This fixes an error introduced in8e90b2569c
which was incorrectly fixed inb5b77ed6ac
. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b089dc16bf
commit
31f088d487
|
@ -1114,7 +1114,7 @@ static HRESULT WINAPI AudioClient_GetService(IAudioClient3 *iface, REFIID riid,
|
|||
if(*ppv) hr = S_OK;
|
||||
else{
|
||||
FIXME("stub %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
hr = E_NOINTERFACE;
|
||||
}
|
||||
|
||||
end:
|
||||
|
|
Loading…
Reference in New Issue