Commit 7003cd39 authored by Gildas Bazin's avatar Gildas Bazin

* modules/demux/asf/libasf.c: fixed memory leak.

parent 94e3a9b9
......@@ -1155,6 +1155,8 @@ static void ASF_FreeObject_extended_content_description( asf_object_t *p_obj)
FREENULL( p_ec->ppsz_name[i] );
FREENULL( p_ec->ppsz_value[i] );
}
FREENULL( p_ec->ppsz_name );
FREENULL( p_ec->ppsz_value );
}
......
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