]> git.sesse.net Git - vlc/commitdiff
spu_Create: attach object before calling var_Inherit
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 13 Feb 2010 09:53:18 +0000 (11:53 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 13 Feb 2010 09:53:18 +0000 (11:53 +0200)
src/video_output/vout_subpictures.c

index 11a1fd87d07ff4fb215d2f3917d3cc8c8e99246c..b698b749e033914b8b6bf9f4382654855f9e8e4e 100644 (file)
@@ -198,9 +198,9 @@ spu_t *spu_Create( vlc_object_t *p_this )
  
     p_spu = vlc_custom_create( p_this, sizeof(spu_t) + sizeof(spu_private_t),
                                VLC_OBJECT_GENERIC, "subpicture" );
-
     if( !p_spu )
         return NULL;
+    vlc_object_attach( p_spu, p_this );
 
     /* Initialize spu fields */
     p_spu->pf_control = SpuControl;
@@ -221,8 +221,6 @@ spu_t *spu_Create( vlc_object_t *p_this )
     /* Register the default subpicture channel */
     p_sys->i_channel = 2;
 
-    vlc_object_attach( p_spu, p_this );
-
     p_sys->psz_chain_update = NULL;
     p_sys->p_chain = filter_chain_New( p_spu, "sub filter", false,
                                        SubFilterAllocationInit,