winegstreamer: Drop redundant NULL check before heap_free().
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b4c890e37c
commit
60a8f050a5
|
@ -394,8 +394,7 @@ static ULONG WINAPI create_object_context_Release(IUnknown *iface)
|
|||
IPropertyStore_Release(context->props);
|
||||
if (context->stream)
|
||||
IMFByteStream_Release(context->stream);
|
||||
if (context->url)
|
||||
heap_free(context->url);
|
||||
heap_free(context->url);
|
||||
heap_free(context);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue