From a98b28c1bf1fd714d7f12090154a9522c94afcc3 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 10 Nov 2011 20:21:49 +0100 Subject: Avoid PyUnicode_AS_UNICODE in the UTF-8 encoder --- Objects/unicodeobject.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 4c509b4..cf1f2ea 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -4820,11 +4820,18 @@ _PyUnicode_AsUTF8String(PyObject *unicode, const char *errors) for(k = repsize; k > 0; k--) *p++ = *prep++; } else /* rep is unicode */ { - const Py_UNICODE *prep = PyUnicode_AS_UNICODE(rep); - Py_UNICODE c; + enum PyUnicode_Kind repkind; + void *repdata; + + if (PyUnicode_READY(rep) < 0) { + Py_DECREF(rep); + goto error; + } + repkind = PyUnicode_KIND(rep); + repdata = PyUnicode_DATA(rep); for(k=0; k