]> git.eshelyaron.com Git - emacs.git/commitdiff
Free the thread specdl. Bug introduced with c466c557f39fc71c10b16e93b484a83187780228.
authorGiuseppe Scrivano <gscrivano@gnu.org>
Wed, 16 Sep 2009 13:07:59 +0000 (15:07 +0200)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Wed, 16 Sep 2009 13:07:59 +0000 (15:07 +0200)
src/thread.c

index 9a19e0632c3e46e46ea327452034b89cdfd77201..dfc14c074a8622ac614d6abd6a35955b0062eaf5 100644 (file)
@@ -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;
 }