Actions
Bug #6247
closedRange not checked for day of year
Bug #6247:
Range not checked for day of year
Description
File: strftime.c
case 'j': /* day of the year, 001 - 366 */
FMT('0', 3, "d", vtm->yday);
continue;
The range for the vtm->yday function is not checked as many of the other values are before formatting. The end result allows the day of year to be up to the size of a ushort.
Actions