]> git.sesse.net Git - vlc/commitdiff
Remove p_static_vlc, not used anymore
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 17 Jan 2009 20:06:48 +0000 (22:06 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 17 Jan 2009 20:16:16 +0000 (22:16 +0200)
src/libvlc.c

index 2f07f4e4a74f189f4920b2846ca6282f7244d53c..61279664a16b1ad8420e4d081f3247d0e12ca8ad 100644 (file)
@@ -99,7 +99,6 @@
 /*****************************************************************************
  * 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;
 
 #ifndef WIN32
@@ -285,9 +284,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
     vlc_mutex_init( &priv->timer_lock );
     vlc_mutex_init( &priv->config_lock );
 
-    /* Store data for the non-reentrant API */
-    p_static_vlc = p_libvlc;
-
     return p_libvlc;
 }