Commit 64f5f8fc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

zip: remove unused variable

parent cbec0abc
...@@ -41,7 +41,6 @@ struct access_sys_t ...@@ -41,7 +41,6 @@ struct access_sys_t
{ {
/* zlib / unzip members */ /* zlib / unzip members */
unzFile zipFile; unzFile zipFile;
zlib_filefunc_def *fileFunctions;
/* file in zip information */ /* file in zip information */
char *psz_fileInzip; char *psz_fileInzip;
...@@ -185,7 +184,6 @@ exit: ...@@ -185,7 +184,6 @@ exit:
unzClose( p_access->p_sys->zipFile ); unzClose( p_access->p_sys->zipFile );
} }
free( p_sys->psz_fileInzip ); free( p_sys->psz_fileInzip );
free( p_sys->fileFunctions );
free( p_sys ); free( p_sys );
} }
...@@ -209,7 +207,6 @@ void AccessClose( vlc_object_t *p_this ) ...@@ -209,7 +207,6 @@ void AccessClose( vlc_object_t *p_this )
unzClose( file ); unzClose( file );
} }
free( p_sys->psz_fileInzip ); free( p_sys->psz_fileInzip );
free( p_sys->fileFunctions );
free( p_sys ); free( p_sys );
} }
......
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