ls: fix segfault when timestamp is out of range for struct tm

Signed-off-by: Mattias Andrée <maandree@kth.se>
This commit is contained in:
Mattias Andrée 2016-03-27 14:49:45 +02:00 committed by sin
parent 33c5c71e01
commit dfc94e0221
1 changed files with 5 additions and 1 deletions

6
ls.c
View File

@ -118,6 +118,7 @@ output(const struct entry *ent)
{
struct group *gr;
struct passwd *pw;
struct tm *tm;
ssize_t len;
size_t l;
char *name, *c, *u, *fmt, buf[BUFSIZ],
@ -194,7 +195,10 @@ output(const struct entry *ent)
else
fmt = "%b %d %H:%M";
strftime(buf, sizeof(buf), fmt, localtime(&ent->t.tv_sec));
if ((tm = localtime(&ent->t.tv_sec)))
strftime(buf, sizeof(buf), fmt, tm);
else
snprintf(buf, sizeof(buf), "%lld", (long long)(ent->t.tv_sec));
printf("%s %4ld %-8.8s %-8.8s ", mode, (long)ent->nlink, pwname, grname);
if (S_ISBLK(ent->mode) || S_ISCHR(ent->mode))