mirror of https://github.com/python/cpython
bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381)
This commit is contained in:
parent
0c9258a6d2
commit
9e06d2b865
|
@ -1434,7 +1434,7 @@ handle_error:
|
|||
PyThreadState *
|
||||
Py_NewInterpreter(void)
|
||||
{
|
||||
PyThreadState *tstate;
|
||||
PyThreadState *tstate = NULL;
|
||||
_PyInitError err = new_interpreter(&tstate);
|
||||
if (_Py_INIT_FAILED(err)) {
|
||||
_Py_ExitInitError(err);
|
||||
|
|
Loading…
Reference in New Issue