mp3dmod: Fix a memory leak (Valgrind).

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2018-12-12 21:27:07 -06:00 committed by Alexandre Julliard
parent 532c986ac5
commit 839a1762cb
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ static ULONG WINAPI Unknown_Release(IUnknown *iface)
if (!refcount)
{
MoFreeMediaType(&This->outtype);
mpg123_delete(This->mh);
heap_free(This);
}