]> granicus.if.org Git - python/commitdiff
traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 5 Oct 2011 20:44:12 +0000 (22:44 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 5 Oct 2011 20:44:12 +0000 (22:44 +0200)
Python/traceback.c

index 9a11bf2df7b81068404ca11f5079a54faac4968d..b66c96cda676fc10fcc73d8b9db63156f9088a2a 100644 (file)
@@ -483,7 +483,8 @@ dump_ascii(int fd, PyObject *text)
     Py_ssize_t i, size;
     int truncated;
     int kind;
-    void *data;
+    void *data = NULL;
+    wchar_t *wstr = NULL;
     Py_UCS4 ch;
 
     size = ascii->length;
@@ -494,11 +495,17 @@ dump_ascii(int fd, PyObject *text)
         else
             data = ((PyCompactUnicodeObject*)text) + 1;
     }
-    else {
+    else if (kind != PyUnicode_WCHAR_KIND) {
         data = ((PyUnicodeObject *)text)->data.any;
         if (data == NULL)
             return;
     }
+    else {
+        wstr = ((PyASCIIObject *)text)->wstr;
+        if (wstr == NULL)
+            return;
+        size = ((PyCompactUnicodeObject *)text)->wstr_length;
+    }
 
     if (MAX_STRING_LENGTH < size) {
         size = MAX_STRING_LENGTH;
@@ -508,7 +515,10 @@ dump_ascii(int fd, PyObject *text)
         truncated = 0;
 
     for (i=0; i < size; i++) {
-        ch = PyUnicode_READ(kind, data, i);
+        if (kind != PyUnicode_WCHAR_KIND)
+            ch = PyUnicode_READ(kind, data, i);
+        else
+            ch = wstr[i];
         if (ch < 128) {
             char c = (char)ch;
             write(fd, &c, 1);