winecoreaudio: Release the critical section in the no interface case.

This fixes an error introduced in 8e90b2569c which was incorrectly
fixed in b5b77ed6ac.

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:
Huw Davies 2021-11-24 11:26:42 +00:00 committed by Alexandre Julliard
parent b089dc16bf
commit 31f088d487
1 changed files with 1 additions and 1 deletions

View File

@ -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: