Commit 83e64c8a authored by Eric Snow's avatar Eric Snow Committed by GitHub

bpo-32604: NULL-terminate kwlist in channel_drop_interpreter(). (gh-5437)

parent 9424dcbb
......@@ -1916,7 +1916,7 @@ static PyObject *
channel_drop_interpreter(PyObject *self, PyObject *args, PyObject *kwds)
{
// Note that only the current interpreter is affected.
static char *kwlist[] = {"id", "send", "recv"};
static char *kwlist[] = {"id", "send", "recv", NULL};
PyObject *id;
int send = -1;
int recv = -1;
......
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