mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381)
This commit is contained in:
parent
0c9258a6d2
commit
9e06d2b865
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue