mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-16 04:15:51 +00:00
typefind: don't ignore return value when starting a task
This commit is contained in:
parent
36cc9efa80
commit
58ecde9db9
1 changed files with 2 additions and 3 deletions
|
@ -1212,9 +1212,8 @@ gst_type_find_element_activate_sink (GstPad * pad, GstObject * parent)
|
|||
goto typefind_push;
|
||||
|
||||
/* only start our task if we ourselves decide to start in pull mode */
|
||||
gst_pad_start_task (pad, (GstTaskFunction) gst_type_find_element_loop, pad);
|
||||
|
||||
return TRUE;
|
||||
return gst_pad_start_task (pad, (GstTaskFunction) gst_type_find_element_loop,
|
||||
pad);
|
||||
|
||||
typefind_push:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue