[vlc-devel] commit: Fixed segfault because of typo in meta info code. (Laurent Aimar )

git version control git at videolan.org
Tue Nov 25 19:31:59 CET 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Nov 25 19:24:17 2008 +0100| [3ce2f703116a5a90a19801d8254a85559660a14f] | committer: Laurent Aimar 

Fixed segfault because of typo in meta info code.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3ce2f703116a5a90a19801d8254a85559660a14f
---

 src/input/es_out.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/input/es_out.c b/src/input/es_out.c
index dd0956d..2ea5a80 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -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;




More information about the vlc-devel mailing list