From 70aa150c9a0c27632cb8f783778bfc8a48e0ef3e Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 16 Sep 2009 15:07:59 +0200 Subject: [PATCH] Free the thread specdl. Bug introduced with c466c557f39fc71c10b16e93b484a83187780228. --- src/thread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/thread.c b/src/thread.c index 9a19e0632c3..dfc14c074a8 100644 --- a/src/thread.c +++ b/src/thread.c @@ -185,9 +185,10 @@ run_thread (void *state) *iter = (*iter)->next_thread; release_buffer (self); + xfree (self->m_specpdl); pthread_mutex_unlock (&global_lock); - + return NULL; } -- 2.39.2