View | Details | Raw Unified | Return to bug 212983
Collapse All | Expand All

(-)strptime.c (-1 / +1 lines)
Lines 378-384 Link Here
378
			if (!isdigit_l((unsigned char)*buf, locale))
378
			if (!isdigit_l((unsigned char)*buf, locale))
379
				return (NULL);
379
				return (NULL);
380
380
381
			i = *buf - '0';
381
			i = *buf++ - '0';
382
			if (i > 6)
382
			if (i > 6)
383
				return (NULL);
383
				return (NULL);
384
384

Return to bug 212983