mirror of https://git.ffmpeg.org/ffmpeg.git
ff_network_wait_fd_timeout: do not break with timeout < 0
Most code treats timeout < 0 like 0 already Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
390aabb2a1
commit
efa9e6b423
|
@ -162,7 +162,7 @@ int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterrupt
|
|||
return ret;
|
||||
if (ff_check_interrupt(int_cb))
|
||||
return AVERROR_EXIT;
|
||||
if (timeout) {
|
||||
if (timeout > 0) {
|
||||
if (!wait_start)
|
||||
wait_start = av_gettime();
|
||||
else if (av_gettime() - wait_start > timeout)
|
||||
|
|
Loading…
Reference in New Issue