Commit 7d134955 authored by Martin v. Löwis's avatar Martin v. Löwis

Always initialize objc.

parent 2c3bfc2a
...@@ -976,7 +976,7 @@ static Tcl_Obj** ...@@ -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 */;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment