]> git.sesse.net Git - vlc/commitdiff
Fix the use of commands list, tree and vars in the rc interface which were broken...
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 1 Sep 2007 20:37:17 +0000 (20:37 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 1 Sep 2007 20:37:17 +0000 (20:37 +0000)
src/misc/objects.c

index 734c314c14020615a85ca097d811a3dcd421724f..32c37ba8a638ebd01c7cce1b271bb9f182f05483 100644 (file)
@@ -156,7 +156,7 @@ vlc_object_t *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
         libvlc_global_data_t *p_libvlc_global = vlc_global();
         if( i_type == VLC_OBJECT_LIBVLC )
         {
-           p_new->p_libvlc = (libvlc_int_t*)p_new;
+            p_new->p_libvlc = (libvlc_int_t*)p_new;
             p_priv->b_attached = VLC_TRUE;
         }
         else
@@ -192,7 +192,10 @@ vlc_object_t *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
     if( i_type == VLC_OBJECT_GLOBAL )
     {
         vlc_mutex_init( p_new, &structure_lock );
+    }
 
+    if( i_type == VLC_OBJECT_LIBVLC )
+    {
         var_Create( p_new, "list", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
         var_AddCallback( p_new, "list", DumpCommand, NULL );
         var_Create( p_new, "tree", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );