mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
parse-launch: fix typo in pad-list length comparision
It was comparing the length with itself. Fixes #642071.
This commit is contained in:
parent
7e9b886ba2
commit
8f9f95cd78
1 changed files with 1 additions and 1 deletions
|
@ -582,7 +582,7 @@ gst_parse_perform_link (link_t *link, graph_t *graph)
|
|||
}
|
||||
}
|
||||
}
|
||||
if (g_slist_length (link->src_pads) != g_slist_length (link->src_pads)) {
|
||||
if (g_slist_length (link->src_pads) != g_slist_length (link->sink_pads)) {
|
||||
goto error;
|
||||
}
|
||||
while (srcs && sinks) {
|
||||
|
|
Loading…
Reference in a new issue