aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-05-06 13:29:51 +0000
committerFrederic Culot <calcurse@culot.org>2007-05-06 13:29:51 +0000
commitd0bc8348caf1ee0771ead4b52e788d5d22f0d316 (patch)
treed1fe81b2d6d347ad03739a02520f1103dff9e07c /src
parent029bf0f3bb800d5983d69f1bb4155b2ea865b4a7 (diff)
downloadcalcurse-d0bc8348caf1ee0771ead4b52e788d5d22f0d316.tar.gz
calcurse-d0bc8348caf1ee0771ead4b52e788d5d22f0d316.zip
bugfix: notify bar init sequence modified to avoid a possible segfault
Diffstat (limited to 'src')
-rwxr-xr-xsrc/notify.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/notify.c b/src/notify.c
index be7193a..48129f6 100755
--- a/src/notify.c
+++ b/src/notify.c
@@ -1,4 +1,4 @@
-/* $calcurse: notify.c,v 1.11 2007/04/14 18:44:53 culot Exp $ */
+/* $calcurse: notify.c,v 1.12 2007/05/06 13:29:51 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -89,6 +89,7 @@ notify_init_bar(int l, int c, int y, int x)
notify_app = (struct notify_app_s *) malloc(sizeof(struct notify_app_s));
pthread_mutex_init(&notify->mutex, NULL);
pthread_mutex_init(&notify_app->mutex, NULL);
+ notify_app->got_app = 0;
notify->win = newwin(l, c, y, x);
notify_extract_aptsfile();
}
@@ -236,7 +237,8 @@ notify_main_thread(void *arg)
pthread_mutex_lock(&notify_app->mutex);
got_app = notify_app->got_app;
pthread_mutex_unlock(&notify_app->mutex);
- if (!got_app) notify_check_next_app();
+ if (!got_app)
+ notify_check_next_app();
}
}
pthread_exit((void*) 0);