diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-27 11:00:26 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-27 11:36:29 +0100 |
commit | 9907069f442c56c90b67accb2d8fbd046dfce6db (patch) | |
tree | aa7c5e31f7ede9e5262de253641948ec8b0dff11 /src/event.c | |
parent | 43bdd12254082c58b04e0d3b3032569443e96e4f (diff) | |
download | calcurse-9907069f442c56c90b67accb2d8fbd046dfce6db.zip |
Validate date/time when scanning items
Bail out when reading dates such as "02/30/2013" from the appointments
file. These *could* be converted into valid dates but since we never
write invalid dates to that file, these indicate a user error.
Fixes following test cases:
* appointment-009.sh
* appointment-012.sh
* appointment-016.sh
* appointment-019.sh
* event-003.sh
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/event.c')
-rw-r--r-- | src/event.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/event.c b/src/event.c index b1186a3..637dd6d 100644 --- a/src/event.c +++ b/src/event.c @@ -125,6 +125,10 @@ struct event *event_scan(FILE * f, struct tm start, int id, char *note) char buf[BUFSIZ], *nl; time_t tstart; + EXIT_IF(!check_date(start.tm_year, start.tm_mon, start.tm_mday) || + !check_time(start.tm_hour, start.tm_min), + _("date error in event")); + /* Read the event description */ if (!fgets(buf, sizeof buf, f)) return NULL; |