pthread: free progress if buffer allocation failed.

Else we run out of progress variables after a few failed buffer
allocations.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
pull/4/head
Ronald S. Bultje 13 years ago committed by Anton Khirnov
parent bc1ef85520
commit 2ee01fbded
  1. 4
      libavcodec/pthread.c

@ -951,6 +951,10 @@ int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
ff_thread_finish_setup(avctx);
}
if (err) {
free_progress(f);
f->thread_opaque = NULL;
}
pthread_mutex_unlock(&p->parent->buffer_mutex);
return err;

Loading…
Cancel
Save