Commit 54b6bef6 authored by Simon Thelen's avatar Simon Thelen Committed by Michael Niedermayer

libavformat/tcp: fix return code for tcp_accept

ff_accept can return AVERROR(ETIMEDOUT) and errno will be 0 (or
undefined), return ret instead and return ff_neterror() in
ff_poll_interrupt instead of AVERROR(errno) to parse WSAGetLastError on
Windows.
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 014d47ed
......@@ -159,7 +159,7 @@ static int ff_poll_interrupt(struct pollfd *p, nfds_t nfds, int timeout,
if (!ret)
return AVERROR(ETIMEDOUT);
if (ret < 0)
return AVERROR(errno);
return ff_neterrno();
return ret;
}
......
......@@ -204,7 +204,7 @@ static int tcp_accept(URLContext *s, URLContext **c)
cc = (*c)->priv_data;
ret = ff_accept(sc->fd, sc->listen_timeout, s);
if (ret < 0)
return ff_neterrno();
return ret;
cc->fd = ret;
return 0;
}
......
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