Commit 6c82c9e9 authored by Jérome Decoodt's avatar Jérome Decoodt

Should fix prolems during launch of VLC on xserve...

parent c7388b1d
......@@ -260,7 +260,10 @@ static VLCInfoTreeItem *o_root_item = nil;
o_value = [o_item_value copy];
i_object_id = i_id;
o_parent = o_parent_item;
p_item = [[[VLCMain sharedInstance] getInfo] getItem];
if( [[VLCMain sharedInstance] getInfo] != nil )
p_item = [[[VLCMain sharedInstance] getInfo] getItem];
else
p_item = NULL;
}
return( self );
}
......
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