Always initialize objc.

This commit is contained in:
Martin v. Löwis 2002-12-12 19:05:48 +00:00
parent 2c3bfc2a1a
commit 7d1349553b

View file

@ -976,7 +976,7 @@ static Tcl_Obj**
Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc) Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc)
{ {
Tcl_Obj **objv = objStore; Tcl_Obj **objv = objStore;
int objc, i; int objc = 0, i;
if (args == NULL) if (args == NULL)
/* do nothing */; /* do nothing */;