]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Always initialize objc.
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 12 Dec 2002 19:05:48 +0000 (19:05 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 12 Dec 2002 19:05:48 +0000 (19:05 +0000)
Modules/_tkinter.c

index 4d58909bd447741a19014fa5730d614476b1fc6a..492198e085b41891ecb208d01b9e337fba9b2b6f 100644 (file)
@@ -976,7 +976,7 @@ static Tcl_Obj**
 Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc)
 {
        Tcl_Obj **objv = objStore;
-       int objc, i;
+       int objc = 0, i;
        if (args == NULL)
                /* do nothing */;