Commit 60a8f050 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winegstreamer: Drop redundant NULL check before heap_free().

parent b4c890e3
......@@ -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);
}
......
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