Fixes maximum usable length of buffer for formatting time zone in localtime().

This commit is contained in:
Steve Dower 2016-12-14 11:22:14 -08:00
commit 0885519914
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ time_localtime(PyObject *self, PyObject *args)
struct tm local = buf;
char zone[100];
int gmtoff;
strftime(zone, sizeof(buf), "%Z", &buf);
strftime(zone, sizeof(zone), "%Z", &buf);
gmtoff = timegm(&buf) - when;
return tmtotuple(&local, zone, gmtoff);
}