Commit e6a55dd8 authored by Xiang Zhang's avatar Xiang Zhang Committed by GitHub

bpo-29874: fix INCREF for possible NULL values in select_select() (GH-758)

parent 827c7832
......@@ -289,9 +289,9 @@ select_select(PyObject *self, PyObject *args)
else
ret = PyTuple_Pack(3, ifdlist, ofdlist, efdlist);
Py_DECREF(ifdlist);
Py_DECREF(ofdlist);
Py_DECREF(efdlist);
Py_XDECREF(ifdlist);
Py_XDECREF(ofdlist);
Py_XDECREF(efdlist);
}
finally:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment