From: Martin v. Löwis Date: Thu, 12 Dec 2002 19:05:48 +0000 (+0000) Subject: Always initialize objc. X-Git-Tag: v2.3c1~3047 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d1349553b12b264ae48c8a5ad8e26f8e9856334;p=thirdparty%2FPython%2Fcpython.git Always initialize objc. --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 4d58909bd447..492198e085b4 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -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 */;