From: Natanael Copa Date: Thu, 19 May 2016 15:31:59 +0000 (+0200) Subject: libbb: fix time parsing of [[CC]YY]MMDDhhmm[.SS]. Closes 8951 X-Git-Tag: 1_25_0~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b684d1b1864ba9d7968de5565823f8e42f1dc448;p=oweals%2Fbusybox.git libbb: fix time parsing of [[CC]YY]MMDDhhmm[.SS]. Closes 8951 If SS is not given a value, it is assumed to be zero. http://pubs.opengroup.org/onlinepubs/9699919799/utilities/touch.html Signed-off-by: Natanael Copa Signed-off-by: Denys Vlasenko --- diff --git a/libbb/time.c b/libbb/time.c index aa19a47d4..82e6cb172 100644 --- a/libbb/time.c +++ b/libbb/time.c @@ -186,6 +186,7 @@ void FAST_FUNC parse_datestr(const char *date_str, struct tm *ptm) } else { bb_error_msg_and_die(bb_msg_invalid_date, date_str); } + ptm->tm_sec = 0; /* assume zero if [.SS] is not given */ if (end == '.') { /* xxx.SS */ if (sscanf(strchr(date_str, '.') + 1, "%u%c",