Commit 5d01bd18 authored by Andrey Utkin's avatar Andrey Utkin Committed by Martin Storsjö

http: pass return code from http_open_cnx_internal() on its failure

Previously, AVERROR(EIO) was returned on failure of
http_open_cnx_internal(). Now the value is passed to upper level, thus
it is possible to distinguish ECONNREFUSED, ETIMEDOUT, ENETUNREACH etc.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 325aa63d
...@@ -248,6 +248,8 @@ fail: ...@@ -248,6 +248,8 @@ fail:
if (s->hd) if (s->hd)
ffurl_close(s->hd); ffurl_close(s->hd);
s->hd = NULL; s->hd = NULL;
if (location_changed < 0)
return location_changed;
return AVERROR(EIO); return AVERROR(EIO);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment