mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
rfbsrc: Don't ignore errors
This prevents recursion on error. This used to happen as we don't change the state when something fails. We end up running and failing in the same state forever.
This commit is contained in:
parent
459bdaae3f
commit
ff5dc55c8a
1 changed files with 1 additions and 0 deletions
|
@ -557,6 +557,7 @@ gst_rfb_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
|
|||
("Error on setup VNC connection to host %s on port %d", src->host,
|
||||
src->port), (NULL));
|
||||
}
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue