]> git.sesse.net Git - vlc/commitdiff
Fixed segfault because of typo in meta info code.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 25 Nov 2008 18:24:17 +0000 (19:24 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 25 Nov 2008 18:24:17 +0000 (19:24 +0100)
src/input/es_out.c

index dd0956dac1f1fb5b89bfe91c2b064e0608641ab6..2ea5a80597677040b79300fb0917092d3a059dde 100644 (file)
@@ -2476,7 +2476,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
         return;
 
     /* Remove previous information */
-    input_Control( p_input, INPUT_DEL_INFO, psz_cat );
+    input_Control( p_input, INPUT_DEL_INFO, psz_cat, NULL );
 
     /* Add informations */
     const char *psz_type;