From: Giuseppe Scrivano Date: Wed, 16 Sep 2009 13:07:59 +0000 (+0200) Subject: Free the thread specdl. Bug introduced with c466c557f39fc71c10b16e93b484a83187780228. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=70aa150c9a0c27632cb8f783778bfc8a48e0ef3e;p=emacs.git Free the thread specdl. Bug introduced with c466c557f39fc71c10b16e93b484a83187780228. --- 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; }