Commit 9fc1391b authored by Francois Cartegnie's avatar Francois Cartegnie

access: zip: fix leak (cid #1048907)

parent f80a71a9
...@@ -439,6 +439,8 @@ static int GetFilesInZip( stream_t *p_this, unzFile file, ...@@ -439,6 +439,8 @@ static int GetFilesInZip( stream_t *p_this, unzFile file,
!= UNZ_OK ) != UNZ_OK )
{ {
msg_Warn( p_this, "can't get info about file in zip" ); msg_Warn( p_this, "can't get info about file in zip" );
free( psz_fileName );
free( p_fileInfo );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
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