Projet

Général

Profil

0018-python-return-NULL-if-get_list_of_pygobject-fails-44.patch

Benjamin Dauvergne, 20 juin 2020 12:44

Télécharger (752 octets)

Voir les différences:

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

 bindings/python/wrapper_top.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
bindings/python/wrapper_top.c
547 547
failure:
548 548
	PyErr_SetString(PyExc_TypeError, "Allocation problem in get_list_of_strings");
549 549
	Py_XDECREF(a_tuple);
550
	return noneRef();
550
	return NULL;
551 551
}
552 552

  
553 553
/**
554
-