playbin: Remove unnecessary assignment

Remove duplicated assignment

https://bugzilla.gnome.org/show_bug.cgi?id=722491
This commit is contained in:
Wonchul Lee 2014-01-18 21:20:51 +09:00 committed by Sebastian Dröge
parent 4f8f5918be
commit c2746d753e

View file

@ -2687,7 +2687,7 @@ gst_play_bin_handle_message (GstBin * bin, GstMessage * msg)
/* Ignore async state changes from the uridecodebin children,
* see bug #602000. */
group = playbin->curr_group;
if (src && (group = playbin->curr_group) &&
if (src && group &&
((group->uridecodebin && src == GST_OBJECT_CAST (group->uridecodebin))
|| (group->suburidecodebin
&& src == GST_OBJECT_CAST (group->suburidecodebin)))) {