This is a summary of errors seen when compiling with an experimental static analysis tool
Raw build logs can be seen here
Code paths in which the reference count of an object is left too high, leading to memory leaks
duplicity/_librsyncmodule.c | _librsync_new_deltamaker | ob_refcnt of '*dm' is 1 too high |
Code paths in which the reference count of an object is left too high, but within an initialization routine, and thus likely to only happen once
duplicity/_librsyncmodule.c | init_librsync | ob_refcnt of new ref from call to Py_BuildValue is 1 too high |
Code paths in error-handling that will lead to a segmentatation fault (e.g. under low memory conditions)
These messages are often false-positives: the analysis tool has no knowledge about internal API calls that can lead to an exception being set
The following "Py" functions were used but aren't yet explicitly handled by gcc-with-cpychecker
PyFile_AsFile
PyObject_Free
Py_FindMethod