From: Jack Jansen Date: Wed, 14 Dec 1994 12:55:17 +0000 (+0000) Subject: Added missing initialization X-Git-Tag: v1.2b1~122 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44fff3cfb5f594c33e1019c34c4c4e731f696199;p=thirdparty%2FPython%2Fcpython.git Added missing initialization --- diff --git a/Modules/imageop.c b/Modules/imageop.c index 57cb90b7e7d6..77da52e78e54 100644 --- a/Modules/imageop.c +++ b/Modules/imageop.c @@ -363,7 +363,7 @@ imageop_dither2grey2(self, args) object *rv; int i; int pos; - int sum, nvalue; + int sum = 0, nvalue; if ( !getargs(args, "(s#ii)", &cp, &len, &x, &y) )