From: Benjamin Peterson Date: Wed, 20 Mar 2013 05:40:07 +0000 (-0500) Subject: fix compiler warning X-Git-Tag: v3.4.0a1~1135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eddb0a7884e7b9edaeed8c5f6b250c40ece403ad;p=python fix compiler warning --- diff --git a/Python/marshal.c b/Python/marshal.c index c3e75b145b..d237d17fad 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -803,7 +803,7 @@ r_object(RFILE *p) /* NULL is a valid return value, it does not necessarily means that an exception is set. */ PyObject *v, *v2; - Py_ssize_t idx; + Py_ssize_t idx = 0; long i, n; int type = r_byte(p); int flag;