app: clear cond and mutex after usage

This commit is contained in:
Ell 2016-04-19 17:43:19 +02:00 committed by Kristian Rietveld
parent 9a4f5800d4
commit 76adffa943
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,9 @@ gimp_fonts_load (Gimp *gimp,
g_mutex_unlock (&data.mutex);
g_thread_join (cache_thread);
g_mutex_clear (&data.mutex);
g_cond_clear (&data.cond);
}
else
{