File: header-py.c
Function: hdr_fiFromHeader
Error: ob_refcnt of new ref from call to Py_BuildValue is 1 too high
295  */
296 static PyObject * hdr_fiFromHeader(PyObject * s, PyObject * args, PyObject * kwds)
297 {
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 *) &rpmfi_Type,
found 1 similar trace(s) to this
ob_refcnt is now refs: 1 + N where N >= 0
298     return PyObject_Call((PyObject *) &rpmfi_Type,
299 			 Py_BuildValue("(O)", s), NULL);
300 }



File: header-py.c
Function: hdr_fiFromHeader
Error: calling PyObject_Call with NULL (gcc.VarDecl(15448)) as argument 2 at header-py.c:298
295  */
296 static PyObject * hdr_fiFromHeader(PyObject * s, PyObject * args, PyObject * kwds)
297 {
when Py_BuildValue() fails
calling PyObject_Call with NULL (gcc.VarDecl(15448)) as argument 2 at header-py.c:298
298     return PyObject_Call((PyObject *) &rpmfi_Type,
299 			 Py_BuildValue("(O)", s), NULL);
300 }