]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-shared.c
Handle missing timestamp in commit/tag objects
[ps-cgit] / ui-shared.c
index 72a7b44472ddb483b9bc6640d029380ac11afd8b..4944dfd2e9676dfadbd0ba916c347af1b1751e08 100644 (file)
@@ -304,6 +304,8 @@ void cgit_print_date(time_t secs, char *format)
        char buf[64];
        struct tm *time;
 
        char buf[64];
        struct tm *time;
 
+       if (!secs)
+               return;
        time = gmtime(&secs);
        strftime(buf, sizeof(buf)-1, format, time);
        html_txt(buf);
        time = gmtime(&secs);
        strftime(buf, sizeof(buf)-1, format, time);
        html_txt(buf);
@@ -313,6 +315,8 @@ void cgit_print_age(time_t t, time_t max_relative, char *format)
 {
        time_t now, secs;
 
 {
        time_t now, secs;
 
+       if (!t)
+               return;
        time(&now);
        secs = now - t;
 
        time(&now);
        secs = now - t;