aboutsummaryrefslogtreecommitdiffstats
path: root/src/calcurse.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2009-07-12 20:37:40 +0000
committerFrederic Culot <calcurse@culot.org>2009-07-12 20:37:40 +0000
commit56a29600ad7a1e91fe0b0b0f3747092552319a46 (patch)
tree1f0dcc9bd07a824ebe0256ee3b97eef06b0e2a78 /src/calcurse.c
parentd374a2ec2ea14fff31140d7945647ea947794f2f (diff)
downloadcalcurse-56a29600ad7a1e91fe0b0b0f3747092552319a46.tar.gz
calcurse-56a29600ad7a1e91fe0b0b0f3747092552319a46.zip
Avoid a fatal error when launching calcurse in interactive mode if user directory does not exist (thanks Antoine for reporting it).
Diffstat (limited to 'src/calcurse.c')
-rwxr-xr-xsrc/calcurse.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/calcurse.c b/src/calcurse.c
index 972d5f0..8673c48 100755
--- a/src/calcurse.c
+++ b/src/calcurse.c
@@ -1,4 +1,4 @@
-/* $calcurse: calcurse.c,v 1.82 2009/07/12 16:21:59 culot Exp $ */
+/* $calcurse: calcurse.c,v 1.83 2009/07/12 20:37:41 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -101,7 +101,10 @@ main (int argc, char **argv)
if (non_interactive)
exit_calcurse (EXIT_SUCCESS);
else
- io_set_lock ();
+ {
+ no_data_file = io_check_data_files ();
+ io_set_lock ();
+ }
/* Begin of interactive mode with ncurses interface. */
sigs_init (&sigact); /* signal handling init */
@@ -158,7 +161,6 @@ main (int argc, char **argv)
* configuration (the display is then updated), and then
* the todo list, appointments and events.
*/
- no_data_file = io_check_data_files ();
custom_load_conf (&conf, background);
wins_erase_status_bar ();
io_load_keys (conf.pager);