Skip to content

Commit efc6cf5

Browse files
committed
Keep C compilers with poor flow analysis happy
1 parent 5eaba5a commit efc6cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ _PyEvalFramePushAndInit_Ex(PyThreadState *tstate, _PyStackRef func,
18111811
bool has_dict = (kwargs != NULL && PyDict_GET_SIZE(kwargs) > 0);
18121812
PyObject *kwnames = NULL;
18131813
_PyStackRef *newargs;
1814-
PyObject *const *object_array;
1814+
PyObject *const *object_array = NULL;
18151815
_PyStackRef stack_array[8];
18161816
if (has_dict) {
18171817
object_array = _PyStack_UnpackDict(tstate, _PyTuple_ITEMS(callargs), nargs, kwargs, &kwnames);

0 commit comments

Comments
 (0)