From: RĂ©mi Denis-Courmont Date: Thu, 4 Feb 2010 16:24:23 +0000 (+0200) Subject: Fix pl_Release() crash with -S X-Git-Tag: 1.1.0-ff~424 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=023c65cf894071643b6975161c1c6c837f8b20d3;p=vlc Fix pl_Release() crash with -S --- diff --git a/src/libvlc.c b/src/libvlc.c index 961671bbf9..c59c3b43b0 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -814,7 +814,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, while( ( m = strsep( &p, " :," ) ) != NULL ) playlist_ServicesDiscoveryAdd( p_playlist, m ); free( psz_modules ); - pl_Release (p_playlist); + pl_Release (p_libvlc); } #ifdef ENABLE_VLM