diff options
-rw-r--r-- | pyuno/source/module/pyuno_util.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_util.cxx b/pyuno/source/module/pyuno_util.cxx index 9f058ef3f35e..5c4b80831313 100644 --- a/pyuno/source/module/pyuno_util.cxx +++ b/pyuno/source/module/pyuno_util.cxx @@ -86,7 +86,8 @@ OUString pyString2ustring( PyObject *pystr ) ret = OUString(pUtf8, size, RTL_TEXTENCODING_UTF8); #else PyObject* pUtf8 = PyUnicode_AsUTF8String(pystr); - ret = OUString(PyStr_AsString(pUtf8), PyStr_Size(pUtf8), RTL_TEXTENCODING_UTF8); + char *pStr = PyStr_AsString(pUtf8); + ret = OUString(pUtf8, strlen(pUtf8), RTL_TEXTENCODING_UTF8); Py_DECREF(pUtf8); #endif #endif |