Check av_dup_packet() return code

Fixes: CID1338320

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-02-03 18:52:26 +01:00
parent 39c0b22df4
commit f90c9c306f
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ static void * attribute_align_arg worker(void *v){
pthread_mutex_unlock(&c->buffer_mutex);
av_frame_free(&frame);
if(got_packet) {
av_dup_packet(pkt);
int ret2 = av_dup_packet(pkt);
if (ret >= 0 && ret2 < 0)
ret = ret2;
} else {
pkt->data = NULL;
pkt->size = 0;