Commit 7bbc2ae8 authored by Laurent Aimar's avatar Laurent Aimar

Fixed memleak if no data are read or poke (zip).

parent 725a1777
......@@ -232,6 +232,9 @@ void StreamClose( vlc_object_t *p_this )
stream_t *s = (stream_t*)p_this;
stream_sys_t *p_sys = s->p_sys;
if( p_sys->zipFile )
unzClose( p_sys->zipFile );
free( p_sys->fileFunctions );
free( p_sys->psz_xspf );
free( p_sys->psz_path );
......
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