summaryrefslogtreecommitdiffstats
path: root/src/ar.c
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2018-10-14 17:29:51 +0200
committerMark Wielaard <mark@klomp.org>2018-10-20 00:13:09 +0200
commit4cdb0fd0d3b4255a9994ce302d6df76d251f7b75 (patch)
tree6814f8530dc47cf6437117632c5e384683311f96 /src/ar.c
parent577511f66842c324c811d1530eea32792f2bee29 (diff)
ar: Assume epoch if ar_date is bogus.
If the ar header contains a bogus ar_date then in verbose mode we would get a NULL pointer from localtime. Just assume the entry was created during the epoch. https://sourceware.org/bugzilla/show_bug.cgi?id=23754 Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'src/ar.c')
-rw-r--r--src/ar.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ar.c b/src/ar.c
index 6f98f75d..d70f1f46 100644
--- a/src/ar.c
+++ b/src/ar.c
@@ -539,8 +539,14 @@ do_oper_extract (int oper, const char *arfname, char **argv, int argc,
else if (oper == oper_list)
{
char datestr[100];
- strftime (datestr, sizeof (datestr), "%b %e %H:%M %Y",
- localtime (&arhdr->ar_date));
+ struct tm *tp = localtime (&arhdr->ar_date);
+ if (tp == NULL)
+ {
+ time_t time = 0;
+ tp = localtime (&time);
+ }
+
+ strftime (datestr, sizeof (datestr), "%b %e %H:%M %Y", tp);
printf ("%c%c%c%c%c%c%c%c%c %u/%u %6ju %s %s\n",
(arhdr->ar_mode & S_IRUSR) ? 'r' : '-',