From: Hirokazu Yamamoto Date: Mon, 16 Feb 2009 09:13:20 +0000 (+0000) Subject: Issue #5249: time.strftime returned malformed string when format string X-Git-Tag: v3.1a1~169 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=575d13306583791160e902d59d43d825c0d49c3b;p=python Issue #5249: time.strftime returned malformed string when format string contained non ascii character on windows. --- diff --git a/Misc/NEWS b/Misc/NEWS index 2a3148320f..03982c53cf 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- +- Issue #5249: time.strftime returned malformed string when format string + contained non ascii character on windows. + - Issue #5186: Reduce hash collisions for objects with no __hash__ method by rotating the object pointer by 4 bits to the right. diff --git a/Modules/timemodule.c b/Modules/timemodule.c index c32b53d463..7e180862bb 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -508,9 +508,11 @@ time_strftime(PyObject *self, PyObject *args) return NULL; } - /* Convert the unicode string to an ascii one */ - fmt = _PyUnicode_AsString(format); - + /* Convert the unicode string to an ascii one */ + format = PyUnicode_AsEncodedString(format, TZNAME_ENCODING, NULL); + if (format == NULL) + return NULL; + fmt = PyBytes_AS_STRING(format); fmtlen = strlen(fmt); /* I hate these functions that presume you know how big the output @@ -519,6 +521,7 @@ time_strftime(PyObject *self, PyObject *args) for (i = 1024; ; i += i) { outbuf = (char *)PyMem_Malloc(i); if (outbuf == NULL) { + Py_DECREF(format); return PyErr_NoMemory(); } buflen = strftime(outbuf, i, fmt, &buf); @@ -532,6 +535,7 @@ time_strftime(PyObject *self, PyObject *args) ret = PyUnicode_Decode(outbuf, buflen, TZNAME_ENCODING, NULL); PyMem_Free(outbuf); + Py_DECREF(format); return ret; } PyMem_Free(outbuf); @@ -539,6 +543,7 @@ time_strftime(PyObject *self, PyObject *args) /* VisualStudio .NET 2005 does this properly */ if (buflen == 0 && errno == EINVAL) { PyErr_SetString(PyExc_ValueError, "Invalid format string"); + Py_DECREF(format); return 0; } #endif