Commit 67756774 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

wineandroid.drv: In AudioClient_IsFormatSupported remove unneeded statement (cppcheck).

parent c0da750e
......@@ -1079,11 +1079,8 @@ static HRESULT WINAPI AudioClient_IsFormatSupported(IAudioClient *iface,
dump_fmt(pwfx);
if(outpwfx){
if(outpwfx)
*outpwfx = NULL;
if(mode != AUDCLNT_SHAREMODE_SHARED)
outpwfx = NULL;
}
hr = waveformat_to_pcm(This, pwfx, &pcm);
TRACE("returning: %08x\n", hr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment