avformat/udp: fix check for pthread_cond_wait return value

POSIX errno is positive. We have strict_pthread_cond_wait to handle
error code during development.

Signed-off-by: zhilizhao <zhilizhao@tencent.com>
Reviewed-by: Jun Zhao <barryjzhao@tencent.com>
pull/359/head
Zhao Zhili 3 years ago committed by Jun Zhao
parent 7ee17ec7e4
commit 30ca9980ff
  1. 4
      libavformat/udp.c

@ -550,9 +550,7 @@ static void *circular_buffer_task_tx( void *_URLContext)
while (len<4) {
if (s->close_req)
goto end;
if (pthread_cond_wait(&s->cond, &s->mutex) < 0) {
goto end;
}
pthread_cond_wait(&s->cond, &s->mutex);
len = av_fifo_size(s->fifo);
}

Loading…
Cancel
Save