From e7faec1aa986f9214a72b2a5533dbab5864fd447 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 2 Mar 2011 00:01:53 +0000 Subject: [PATCH] Fix my previous commit (r88702): initialize size_tflag in parse_format_flags() --- Objects/unicodeobject.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 4f1177e1ad5..7597a46ab6a 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -750,6 +750,7 @@ parse_format_flags(const char *f, /* Handle %ld, %lu, %lld and %llu. */ longflag = 0; longlongflag = 0; + size_tflag = 0; if (*f == 'l') { if (f[1] == 'd' || f[1] == 'u') {