summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-12-03 11:47:59 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-12-03 11:47:59 (GMT)
commit27b1ca29ccf523e736a47c02f554de5374e241fc (patch)
treedaf9a3fdd3e0fdd67b9b95795fa03f7a6c895398 /Objects
parentce31f66a6d23a5df75eb692c2991e7602b2b6571 (diff)
downloadcpython-27b1ca29ccf523e736a47c02f554de5374e241fc.zip
cpython-27b1ca29ccf523e736a47c02f554de5374e241fc.tar.gz
cpython-27b1ca29ccf523e736a47c02f554de5374e241fc.tar.bz2
Issue #16416: On Mac OS X, operating system data are now always
encoded/decoded to/from UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if no locale environment variable is set), to avoid inconsistencies with os.fsencode() and os.fsdecode() functions which are already using UTF-8/surrogateescape.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 35b424e..565d298 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -2792,7 +2792,10 @@ PyObject *PyUnicode_DecodeUTF8Stateful(const char *s,
#ifdef __APPLE__
/* Simplified UTF-8 decoder using surrogateescape error handler,
- used to decode the command line arguments on Mac OS X. */
+ used to decode the command line arguments on Mac OS X.
+
+ Return a pointer to a newly allocated wide character string (use
+ PyMem_Free() to free the memory), or NULL on memory allocation error. */
wchar_t*
_Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
@@ -2803,10 +2806,8 @@ _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
/* Note: size will always be longer than the resulting Unicode
character count */
- if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1)) {
- PyErr_NoMemory();
+ if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1))
return NULL;
- }
unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t));
if (!unicode)
return NULL;