Author: walter.doerwald
Date: Fri May 18 13:30:40 2007
New Revision: 55428

Modified:
   python/branches/py3k-struni/Objects/unicodeobject.c
Log:
Allocate one more character, so that the terminating
nullbyte can be copied.


Modified: python/branches/py3k-struni/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k-struni/Objects/unicodeobject.c (original)
+++ python/branches/py3k-struni/Objects/unicodeobject.c Fri May 18 13:30:40 2007
@@ -427,7 +427,7 @@
        }
     }
 
-    unicode = _PyUnicode_New(size);
+    unicode = _PyUnicode_New(size+1);
     if (!unicode)
         return NULL;
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to