File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*module' is 1 too high
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
PyModuleObject allocated at:   if ((module = PyImport_ImportModule ("gst")) == NULL)
ob_refcnt is now refs: 1 + N where N >= 0
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*module' is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
found 6 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstvalue_class.1' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
ob_refcnt is now refs: 0 + N where N >= 1
'*gstvalue_class.1' is now referenced by 1 non-stack value(s): gstvalue_class
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstvalue_class.1' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstvalue_class
but final ob_refcnt is N + 0
found 5 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstfourcc_class.3' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
ob_refcnt is now refs: 0 + N where N >= 1
'*gstfourcc_class.3' is now referenced by 1 non-stack value(s): gstfourcc_class
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstfourcc_class.3' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstfourcc_class
but final ob_refcnt is N + 0
found 4 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstintrange_class.4' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
ob_refcnt is now refs: 0 + N where N >= 1
'*gstintrange_class.4' is now referenced by 1 non-stack value(s): gstintrange_class
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstintrange_class.4' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstintrange_class
but final ob_refcnt is N + 0
found 3 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstdoublerange_class' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
'*gstdoublerange_class' is now referenced by 1 non-stack value(s): gstdoublerange_class
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
ob_refcnt is now refs: 0 + N where N >= 1
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstdoublerange_class' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstdoublerange_class
but final ob_refcnt is N + 0
found 2 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstfraction_class.9' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
ob_refcnt is now refs: 0 + N where N >= 1
'*gstfraction_class.9' is now referenced by 1 non-stack value(s): gstfraction_class
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstfraction_class.9' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstfraction_class
but final ob_refcnt is N + 0
found 1 similar trace(s) to this

File: pygstvalue.c
Function: pygst_value_init
Error: ob_refcnt of '*gstfractionrange_class' is 1 too low
378 gboolean
379 pygst_value_init (void)
380 {
381   PyObject *module, *dict;
382 
383   if ((module = PyImport_ImportModule ("gst")) == NULL)
when PyImport_ImportModule() succeeds
taking False path
384     return FALSE;
385 
386   dict = PyModule_GetDict (module);
387 
388   gstvalue_class = (PyObject *) PyDict_GetItemString (dict, "Value");
when PyDict_GetItemString() succeeds
389   NULL_CHECK (gstvalue_class);
taking False path
390   gstfourcc_class = (PyObject *) PyDict_GetItemString (dict, "Fourcc");
when PyDict_GetItemString() succeeds
391   NULL_CHECK (gstfourcc_class);
taking False path
392   gstintrange_class = (PyObject *) PyDict_GetItemString (dict, "IntRange");
when PyDict_GetItemString() succeeds
393   NULL_CHECK (gstintrange_class);
taking False path
394   gstdoublerange_class =
395       (PyObject *) PyDict_GetItemString (dict, "DoubleRange");
when PyDict_GetItemString() succeeds
396   NULL_CHECK (gstdoublerange_class);
taking False path
397   gstfraction_class = (PyObject *) PyDict_GetItemString (dict, "Fraction");
when PyDict_GetItemString() succeeds
398   NULL_CHECK (gstfraction_class);
taking False path
399   gstfractionrange_class =
'*gstfractionrange_class' is now referenced by 1 non-stack value(s): gstfractionrange_class
400       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
when PyDict_GetItemString() succeeds
borrowed reference returned by PyDict_GetItemString() allocated at:       (PyObject *) PyDict_GetItemString (dict, "FractionRange");
ob_refcnt is now refs: 0 + N where N >= 1
401   NULL_CHECK (gstfractionrange_class);
taking False path
402   return TRUE;
403 
404 err:
405   PyErr_SetString (PyExc_ImportError,
406       "Failed to get GstValue classes from gst module");
407   return FALSE;
408 }
ob_refcnt of '*gstfractionrange_class' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: gstfractionrange_class
but final ob_refcnt is N + 0