mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
playbin: Remove unnecessary assignment
Remove duplicated assignment https://bugzilla.gnome.org/show_bug.cgi?id=722491
This commit is contained in:
parent
4f8f5918be
commit
c2746d753e
1 changed files with 1 additions and 1 deletions
|
@ -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)))) {
|
||||
|
|
Loading…
Reference in a new issue