Commit c3ef2e6e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dmime: Remove redundant NULL check before free().

parent c6b2bccf
......@@ -112,10 +112,7 @@ static ULONG WINAPI segment_Release(IDirectMusicSegment8 *iface)
list_remove(&entry->entry);
track_entry_destroy(entry);
}
if (This->wave_data)
free(This->wave_data);
free(This->wave_data);
free(This);
}
......
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