Commit 1993aa3c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove bogus old code in tree dump.

parent 792c8ca3
...@@ -1038,25 +1038,9 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd, ...@@ -1038,25 +1038,9 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
if( end != newval.psz_string ) if( end != newval.psz_string )
p_object = vlc_object_get( i_id ); p_object = vlc_object_get( i_id );
else else
{
/* try using the object's name to find it */ /* try using the object's name to find it */
vlc_object_t *p_libvlc = vlc_object_get( 1 ); p_object = vlc_object_find_name( p_this, newval.psz_string,
if( p_libvlc ) FIND_ANYWHERE );
{
/* Look in p_libvlc's children tree */
p_object = vlc_object_find_name( p_libvlc,
newval.psz_string,
FIND_CHILD );
vlc_object_release( p_libvlc );
}
if( !p_object )
{
/* If it's not in libvlc, look in libvlc_global (== p_this) */
p_object = vlc_object_find_name( p_this,
newval.psz_string,
FIND_CHILD );
}
}
if( !p_object ) if( !p_object )
{ {
......
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