diff options
author | Georg Brandl <georg@python.org> | 2014-10-01 17:15:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-01 17:15:11 (GMT) |
commit | ff3e5e3779ae6fab9f5d33149c95441eb847c196 (patch) | |
tree | fc9c35a851e24acff88fb5f80d14d1699c316b7f /Objects | |
parent | 51c116223e7698ce3cbbac46e8a6779aea8ec9c6 (diff) | |
download | cpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.zip cpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.tar.gz cpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.tar.bz2 |
Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX).
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cd4e9e9..b798850 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1267,7 +1267,7 @@ unicode_aswidechar(PyUnicodeObject *unicode, Py_ssize_t nchar; u = PyUnicode_AS_UNICODE(unicode); - uend = u + PyUnicode_GET_SIZE(u); + uend = u + PyUnicode_GET_SIZE(unicode); if (w != NULL) { worig = w; wend = w + size; |