[vlc-commits] commit: MSN: fix assertion (fixes #2930) ( Rémi Denis-Courmont )

git at videolan.org git at videolan.org
Sun Mar 7 19:32:17 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Mar  7 20:29:20 2010 +0200| [438bc9c60012609fc2872235709950c219f49b7b] | committer: Rémi Denis-Courmont 

MSN: fix assertion (fixes #2930)

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

 modules/misc/notify/msn.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/misc/notify/msn.c b/modules/misc/notify/msn.c
index 2a1d7ae..fe6fadd 100644
--- a/modules/misc/notify/msn.c
+++ b/modules/misc/notify/msn.c
@@ -153,7 +153,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
     char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
     char *psz_album = input_item_GetAlbum( input_GetItem( p_input ) );
     char *psz_title = input_item_GetTitleFbName( input_GetItem( p_input ) );
-    char *psz_buf = str_format_meta( p_this, p_intf->p_sys->psz_format );
+    char *psz_buf = str_format_meta( p_intf, p_intf->p_sys->psz_format );
 
     snprintf( psz_tmp,
               MSN_MAX_LENGTH,



More information about the vlc-commits mailing list