Commit 65340c97 authored by Matt Wolenetz's avatar Matt Wolenetz Committed by Michael Niedermayer

Fix pthread_cond and pthread_mutex leaks in vp8

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1c11ab82
......@@ -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);
}
......
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