diff options
Diffstat (limited to 'contrib/tools/python3/Modules/_interpchannelsmodule.c')
| -rw-r--r-- | contrib/tools/python3/Modules/_interpchannelsmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tools/python3/Modules/_interpchannelsmodule.c b/contrib/tools/python3/Modules/_interpchannelsmodule.c index 460b4e5f4ea..4d5099f3807 100644 --- a/contrib/tools/python3/Modules/_interpchannelsmodule.c +++ b/contrib/tools/python3/Modules/_interpchannelsmodule.c @@ -2553,6 +2553,7 @@ _channelid_from_xid(_PyCrossInterpreterData *data) { struct _channelid_xid *xid = \ (struct _channelid_xid *)_PyCrossInterpreterData_DATA(data); + PyObject *cidobj = NULL; // It might not be imported yet, so we can't use _get_current_module(). PyObject *mod = PyImport_ImportModule(MODULE_NAME_STR); @@ -2562,11 +2563,10 @@ _channelid_from_xid(_PyCrossInterpreterData *data) assert(mod != Py_None); module_state *state = get_module_state(mod); if (state == NULL) { - return NULL; + goto done; } // Note that we do not preserve the "resolve" flag. - PyObject *cidobj = NULL; int err = newchannelid(state->ChannelIDType, xid->cid, xid->end, _global_channels(), 0, 0, (channelid **)&cidobj); |
