File: header-py.c
Function: hdr_dsOfHeader
Error: ob_refcnt of new ref from call to Py_BuildValue is 1 too high
314 static PyObject * hdr_dsOfHeader(PyObject * s)
315 {
316     return PyObject_Call((PyObject *) &rpmds_Type,
317 			Py_BuildValue("(Oi)", s, RPMTAG_NEVR), NULL);
when Py_BuildValue() succeeds
when PyObject_Call() succeeds
returning
ob_refcnt of new ref from call to Py_BuildValue is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
new ref from call to Py_BuildValue allocated at:     return PyObject_Call((PyObject *) &rpmds_Type,
found 1 similar trace(s) to this
ob_refcnt is now refs: 1 + N where N >= 0
318 }
319 

File: header-py.c
Function: hdr_dsOfHeader
Error: calling PyObject_Call with NULL as argument 2 (D.17741) at header-py.c:317
314 static PyObject * hdr_dsOfHeader(PyObject * s)
315 {
316     return PyObject_Call((PyObject *) &rpmds_Type,
317 			Py_BuildValue("(Oi)", s, RPMTAG_NEVR), NULL);
when Py_BuildValue() fails
calling PyObject_Call with NULL as argument 2 (D.17741) at header-py.c:317
318 }
319