rtspsrc: use EINVAL for missing url parameter

Fixes gcc warning about using uninitialized variable 'res'.
This commit is contained in:
Stefan Kost 2011-05-18 10:22:27 +03:00
parent e34ab46420
commit be413185d0

View file

@ -5525,8 +5525,10 @@ restart:
src->need_redirect = FALSE;
/* can't continue without a valid url */
if (G_UNLIKELY (src->conninfo.url == NULL))
if (G_UNLIKELY (src->conninfo.url == NULL)) {
res = GST_RTSP_EINVAL;
goto no_url;
}
src->tried_url_auth = FALSE;
if ((res = gst_rtsp_conninfo_connect (src, &src->conninfo, async)) < 0)