Projet

Général

Profil

0017-python-return-NULL-if-get_list_of_xml_nodes-fails-44.patch

Benjamin Dauvergne, 20 juin 2020 12:44

Télécharger (766 octets)

Voir les différences:

Subject: [PATCH 17/21] python: return NULL if get_list_of_xml_nodes fails
 (#44287)

 bindings/python/wrapper_top.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
bindings/python/wrapper_top.c
511 511
failure:
512 512
	PyErr_SetString(PyExc_TypeError, "Allocation problem in get_list_of_strings");
513 513
	Py_XDECREF(a_tuple);
514
	return noneRef();
514
	return NULL;
515 515
}
516 516

  
517 517
static PyObject *
518
-