Possible deadlock fixed, thanks Henrik for reporting it.

This commit is contained in:
Frederic Culot 2009-08-13 17:30:42 +00:00
parent 220f49f206
commit 8ba49be856
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2009-08-13 Frederic Culot <frederic@culot.org>
* src/notify.c (notify_thread_app): possible deadlock fixed
(thanks Henrik for reporting it)
2009-08-09 Frederic Culot <frederic@culot.org>
* src/notify.c (notify_thread_app): rewritten

View File

@ -1,4 +1,4 @@
/* $calcurse: notify.c,v 1.45 2009/08/09 15:34:56 culot Exp $ */
/* $calcurse: notify.c,v 1.46 2009/08/13 17:30:42 culot Exp $ */
/*
* Calcurse - text-based organizer
@ -429,17 +429,21 @@ notify_thread_app (void *arg)
if (!notify_get_next (&tmp_app))
pthread_exit ((void *)0);
pthread_mutex_lock (&notify_app.mutex);
if (!tmp_app.got_app)
{
pthread_mutex_lock (&notify_app.mutex);
notify_free_app ();
pthread_mutex_unlock (&notify_app.mutex);
}
else
{
if (!notify_same_item (tmp_app.time))
{
pthread_mutex_lock (&notify_app.mutex);
notify_update_app (tmp_app.time, tmp_app.state, tmp_app.txt);
}
pthread_mutex_unlock (&notify_app.mutex);
}
}
if (tmp_app.txt)
mem_free (tmp_app.txt);