File: src/_webp.c
Function: addTransparencyFlagToModule
Error: memory leak: ob_refcnt of PyBool_FromLong is 1 too high
945 void
946 addTransparencyFlagToModule(PyObject *m) {
947     PyModule_AddObject(
when considering range: -0x80000000 <= value <= -1
PyBool_FromLong() returns
when PyModule_AddObject() fails
PyBool_FromLong was allocated at:     PyModule_AddObject(
ob_refcnt is now refs: 1 owned
948         m, "HAVE_TRANSPARENCY", PyBool_FromLong(!WebPDecoderBuggyAlpha()));
949 }
returning
memory leak: ob_refcnt of PyBool_FromLong is 1 too high
was expecting final owned ob_refcnt of PyBool_FromLong to be 0 since nothing references it but final ob_refcnt is refs: 1 owned
found 2 similar trace(s) to this