From afb3c2bc9f798096c571ff02d2eb2327544d7160 Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Mon, 23 Jun 2014 12:34:09 +0200 Subject: [PATCH 1/1] Use PyList_SET_ITEM for list initialization in _isl.c --- pypol/_isl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pypol/_isl.c b/pypol/_isl.c index a62d650..b9d6092 100644 --- a/pypol/_isl.c +++ b/pypol/_isl.c @@ -19,7 +19,8 @@ int _isl_isl_basic_set_add_constraint_list(__isl_take isl_constraint *c, if (value == NULL) { return -1; } - return PyList_SetItem(list->constraints, list->cursor++, value); + PyList_SET_ITEM(list->constraints, list->cursor++, value); + return 0; } static PyObject * _isl_isl_basic_set_constraints(PyObject *self, -- 2.20.1