mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
uridecodebin3: Fix GList leak
https://bugzilla.gnome.org/show_bug.cgi?id=795937
This commit is contained in:
parent
12694200d5
commit
7e724bddf3
1 changed files with 1 additions and 1 deletions
|
@ -576,7 +576,7 @@ db_pad_removed_cb (GstElement * element, GstPad * pad, GstURIDecodeBin3 * dec)
|
|||
|
||||
if (cand->target_pad == pad) {
|
||||
output = cand;
|
||||
dec->output_pads = g_list_remove_link (dec->output_pads, tmp);
|
||||
dec->output_pads = g_list_delete_link (dec->output_pads, tmp);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue