Commit a2eecc11 authored by Andrey Utkin's avatar Andrey Utkin Committed by Michael Niedermayer

udp: remove dead code line (unused result)

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0a0e83a
......@@ -364,7 +364,6 @@ static void *circular_buffer_task( void *_URLContext)
s->circular_buffer_error = AVERROR(EIO);
goto end;
}
left = FFMIN(left, s->fifo->end - s->fifo->wptr);
len = recv(s->udp_fd, s->tmp+4, sizeof(s->tmp)-4, 0);
if (len < 0) {
if (ff_neterrno() != AVERROR(EAGAIN) && ff_neterrno() != AVERROR(EINTR)) {
......
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