Commit 1210b98c authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

windows.media.speech: Remove redundant NULL check before free().

parent b7fd8972
......@@ -372,7 +372,7 @@ static HRESULT WINAPI constraint_factory_CreateWithTag( ISpeechRecognitionListCo
error:
if (impl->commands) IVector_HSTRING_Release(impl->commands);
if (impl) free(impl);
free(impl);
return 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