diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-06-24 23:45:02 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-06-25 12:35:43 +0200 |
commit | 0529b864b0b2ababd799ee18faf486dbcce68b97 (patch) | |
tree | e2eb2cc780396a8065221d19a29d756d5cd2bcb7 /src/args.c | |
parent | 0b46ad4faaee1ce982a64413b57406e43cb83e88 (diff) | |
download | calcurse-0529b864b0b2ababd799ee18faf486dbcce68b97.zip |
Fix segmentation fault
This adds some more accurate checks to avoid a segmentation fault that
occurred when accessing a nonexistent item.
Fixes GitHub issue #7.
Reported-by: Bromind <martin.vassor@hotmail.fr>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/args.c')
-rw-r--r-- | src/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -309,7 +309,7 @@ app_arg(int add_line, struct date *day, long date, const char *fmt_apt, day_store_items(date, regex, 0); - int n = day_item_count(); + int n = day_item_count(0); if (n > 0) { if (add_line) |