[Python-checkins] r88703 - python/branches/py3k/Objects/unicodeobject.c

victor.stinner python-checkins at python.org
Wed Mar 2 01:01:53 CET 2011


Author: victor.stinner
Date: Wed Mar  2 01:01:53 2011
New Revision: 88703

Log:
Fix my previous commit (r88702): initialize size_tflag in parse_format_flags()

Modified:
   python/branches/py3k/Objects/unicodeobject.c

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Wed Mar  2 01:01:53 2011
@@ -750,6 +750,7 @@
     /* Handle %ld, %lu, %lld and %llu. */
     longflag = 0;
     longlongflag = 0;
+    size_tflag = 0;
 
     if (*f == 'l') {
         if (f[1] == 'd' || f[1] == 'u') {


More information about the Python-checkins mailing list