python: return NULL if get_list_of_strings() fails (#44287)

This commit is contained in:
Benjamin Dauvergne 2020-06-20 09:17:56 +02:00
parent 5f5bc888b1
commit 77bed35c42
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ get_list_of_strings(const GList *a_list) {
failure:
PyErr_SetString(PyExc_TypeError, "Allocation problem in get_list_of_strings");
Py_XDECREF(a_tuple);
return noneRef();
return NULL;
}
static PyObject *