]> git.sesse.net Git - vlc/blobdiff - modules/demux/real.c
Remove useless test before a free (again).
[vlc] / modules / demux / real.c
index 1e814ce1574161b9a205c190216a2df0aa4b26cc..8f382873052533812eb0b8cbdb664de50c10fb79 100644 (file)
@@ -216,10 +216,10 @@ static void Close( vlc_object_t *p_this )
         free( tk );
     }
 
-    if( p_sys->psz_title ) free( p_sys->psz_title );
-    if( p_sys->psz_artist ) free( p_sys->psz_artist );
-    if( p_sys->psz_copyright ) free( p_sys->psz_copyright );
-    if( p_sys->psz_description ) free( p_sys->psz_description );
+    free( p_sys->psz_title );
+    free( p_sys->psz_artist );
+    free( p_sys->psz_copyright );
+    free( p_sys->psz_description );
 
     if( p_sys->i_track > 0 ) free( p_sys->track );
     free( p_sys );