Commit 9de3b003 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

playlist: if(X)free(X) -> free(X)

parent 3f5c8f4e
......@@ -83,8 +83,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
/* Clean up */
fclose( p_export->p_file );
if ( p_export->psz_filename )
free( p_export->psz_filename );
free( p_export->psz_filename );
free ( p_export );
p_playlist->p_private = NULL;
vlc_mutex_unlock( &p_playlist->object_lock );
......
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