mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
udp: add missing mutex unlock
Fixes CID703688 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c4503a2e40
commit
044c0e62ea
@ -766,8 +766,10 @@ static int udp_read(URLContext *h, uint8_t *buf, int size)
|
||||
int64_t t = av_gettime() + 100000;
|
||||
struct timespec tv = { .tv_sec = t / 1000000,
|
||||
.tv_nsec = (t % 1000000) * 1000 };
|
||||
if (pthread_cond_timedwait(&s->cond, &s->mutex, &tv) < 0)
|
||||
if (pthread_cond_timedwait(&s->cond, &s->mutex, &tv) < 0) {
|
||||
pthread_mutex_unlock(&s->mutex);
|
||||
return AVERROR(errno == ETIMEDOUT ? EAGAIN : errno);
|
||||
}
|
||||
nonblock = 1;
|
||||
}
|
||||
} while( 1);
|
||||
|
Loading…
Reference in New Issue
Block a user