Commit 023c65cf authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix pl_Release() crash with -S

parent a19e1b85
...@@ -814,7 +814,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -814,7 +814,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
while( ( m = strsep( &p, " :," ) ) != NULL ) while( ( m = strsep( &p, " :," ) ) != NULL )
playlist_ServicesDiscoveryAdd( p_playlist, m ); playlist_ServicesDiscoveryAdd( p_playlist, m );
free( psz_modules ); free( psz_modules );
pl_Release (p_playlist); pl_Release (p_libvlc);
} }
#ifdef ENABLE_VLM #ifdef ENABLE_VLM
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment