Commit cbd19881 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/udp: Remove unused variable

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent dac030d3
...@@ -1099,7 +1099,6 @@ static int udp_close(URLContext *h) ...@@ -1099,7 +1099,6 @@ static int udp_close(URLContext *h)
#if HAVE_PTHREAD_CANCEL #if HAVE_PTHREAD_CANCEL
// Request close once writing is finished // Request close once writing is finished
if (s->thread_started && !(h->flags & AVIO_FLAG_READ)) { if (s->thread_started && !(h->flags & AVIO_FLAG_READ)) {
int ret;
pthread_mutex_lock(&s->mutex); pthread_mutex_lock(&s->mutex);
s->close_req = 1; s->close_req = 1;
pthread_cond_signal(&s->cond); pthread_cond_signal(&s->cond);
......
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