summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/print_time.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/print_time.c b/src/print_time.c
index 6871437..2cf2ab3 100644
--- a/src/print_time.c
+++ b/src/print_time.c
@@ -7,7 +7,13 @@ void print_time(const char *format) {
static char part[512];
/* Get date & time */
time_t current_time = time(NULL);
+ if (current_time == (time_t) -1) {
+ return;
+ }
struct tm *current_tm = localtime(&current_time);
+ if (current_tm == NULL) {
+ return;
+ }
(void)strftime(part, sizeof(part), format, current_tm);
printf("%s", part);
}