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 low. This could lead to the object being deallocated too early, triggering segfaults when later accessed. Over repeated calls, these errors could accumulate, increasing the likelihood of a segfault.
source/IoPython.c | wrap | ob_refcnt of '*o' is 1 too low |
Code paths in which the reference count of an object is left too high, leading to memory leaks
Code paths in error-handling that will lead to a segmentatation fault (e.g. under low memory conditions)
Code paths in which the reference count of an object might too large - but in which the reference in question came from a function not known to the analyzer.
The analyzer assumes such references are new references, but if the function returns a borrowed reference instead, it's probably not a bug
source/IoPython.c | IoPython_import | ob_refcnt of '*pModule' is 1 too high |
source/IoPython.c | IoPython_call_int | ob_refcnt of '*pyValue' is 1 too high |
These messages are often false-positives: the analysis tool has no knowledge about internal API calls that can lead to an exception being set
source/IoPython.c | convertIo | returning (PyObject*)NULL without setting an exception |