From 65340c976c664b94427ac50f5d03b0e77883c108 Mon Sep 17 00:00:00 2001 From: Matt Wolenetz Date: Wed, 27 Mar 2013 17:29:57 -0700 Subject: [PATCH] Fix pthread_cond and pthread_mutex leaks in vp8 Signed-off-by: Michael Niedermayer --- libavcodec/vp8.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 1ab76b5278..553e5c884d 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -40,6 +40,10 @@ static void free_buffers(VP8Context *s) int i; if (s->thread_data) for (i = 0; i < MAX_THREADS; i++) { +#if HAVE_THREADS + pthread_cond_destroy(&s->thread_data[i].cond); + pthread_mutex_destroy(&s->thread_data[i].lock); +#endif av_freep(&s->thread_data[i].filter_strength); av_freep(&s->thread_data[i].edge_emu_buffer); } -- GitLab