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:
Nicolas Dufresne 2016-03-24 18:14:37 -04:00
parent 459bdaae3f
commit ff5dc55c8a

View file

@ -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;
}
}