summaryrefslogtreecommitdiff
path: root/python/rpmps-py.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/rpmps-py.c')
-rw-r--r--python/rpmps-py.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/python/rpmps-py.c b/python/rpmps-py.c
index c003dd8fc..fa7e91ec7 100644
--- a/python/rpmps-py.c
+++ b/python/rpmps-py.c
@@ -129,10 +129,12 @@ PyObject *rpmps_AsList(rpmps ps)
{
PyObject *problems = PyList_New(0);
rpmpsi psi = rpmpsInitIterator(ps);
- while (rpmpsNextIterator(psi) >= 0) {
- PyObject *prob = rpmprob_Wrap(&rpmProblem_Type, rpmpsGetProblem(psi));
- PyList_Append(problems, prob);
- Py_DECREF(prob);
+ rpmProblem prob;
+
+ while ((prob = rpmpsiNext(psi))) {
+ PyObject *pyprob = rpmprob_Wrap(&rpmProblem_Type, prob);
+ PyList_Append(problems, pyprob);
+ Py_DECREF(pyprob);
}
rpmpsFreeIterator(psi);
return problems;