mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
Always initialize objc.
This commit is contained in:
parent
2c3bfc2a1a
commit
7d1349553b
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue