Commit 36547e29 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove p_static_vlc, not used anymore

parent 4ce128c0
...@@ -99,7 +99,6 @@ ...@@ -99,7 +99,6 @@
/***************************************************************************** /*****************************************************************************
* The evil global variables. We handle them with care, don't worry. * The evil global variables. We handle them with care, don't worry.
*****************************************************************************/ *****************************************************************************/
static libvlc_int_t * p_static_vlc = NULL;
static unsigned i_instances = 0; static unsigned i_instances = 0;
#ifndef WIN32 #ifndef WIN32
...@@ -285,9 +284,6 @@ libvlc_int_t * libvlc_InternalCreate( void ) ...@@ -285,9 +284,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
vlc_mutex_init( &priv->timer_lock ); vlc_mutex_init( &priv->timer_lock );
vlc_mutex_init( &priv->config_lock ); vlc_mutex_init( &priv->config_lock );
/* Store data for the non-reentrant API */
p_static_vlc = p_libvlc;
return p_libvlc; return p_libvlc;
} }
......
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