[vlc-commits] lib: media_list: Fix syntax error
    Hugo Beauzée-Luyssen 
    git at videolan.org
       
    Fri Dec 11 13:03:48 UTC 2020
    
    
  
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri Dec 11 14:03:08 2020 +0100| [a5bc4e86de5814608845ea050a93eddf3b8e7e24] | committer: Hugo Beauzée-Luyssen
lib: media_list: Fix syntax error
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a5bc4e86de5814608845ea050a93eddf3b8e7e24
---
 lib/media_list.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/media_list.c b/lib/media_list.c
index 353530c2a5..b120bd3166 100644
--- a/lib/media_list.c
+++ b/lib/media_list.c
@@ -180,7 +180,7 @@ libvlc_media_list_t *libvlc_media_list_new(void)
 void libvlc_media_list_release( libvlc_media_list_t * p_mlist )
 {
     if( !vlc_atomic_rc_dec( &p_mlist->rc ) )
-        return
+        return;
 
     /* Refcount null, time to free */
 
    
    
More information about the vlc-commits
mailing list