pyuno/source/module/pyuno_util.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 8ea4657f64e7575696be4bba5b2a4309ac029ae4
Author: Michael Meeks <michael.me...@suse.com>
Date:   Sun Nov 25 16:55:25 2012 +0000

    attempted blind fix for pystring size.
    
    Change-Id: I637292be9791484a58b60e8889962176a37e2c07

diff --git a/pyuno/source/module/pyuno_util.cxx 
b/pyuno/source/module/pyuno_util.cxx
index 9f058ef..5c4b808 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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to