]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added missing initialization
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 14 Dec 1994 12:55:17 +0000 (12:55 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 14 Dec 1994 12:55:17 +0000 (12:55 +0000)
Modules/imageop.c

index 57cb90b7e7d6089afec07eaee2ba11927e6e0795..77da52e78e5437db81d2106b6fb546a59130fefd 100644 (file)
@@ -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) )