File: tagmodule.c
Function: inittag
Error: ob_refcnt of new ref from (unknown) pygobject_init is 1 too high
37 DL_EXPORT(void)
38 inittag (void)
39 {
40 	PyObject *m, *d;
41 
42 	init_pygobject ();
when pygobject_init() succeeds
taking False path
returning
ob_refcnt of new ref from (unknown) pygobject_init 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 (unknown) pygobject_init allocated at: 	init_pygobject ();
found 1 similar trace(s) to this
ob_refcnt is now refs: 1 + N where N >= 0
43 	/* Initialize tag library */
44 	gst_tag_register_musicbrainz_tags ();
45 	
46 	m = Py_InitModule ("tag", pytag_functions);
when Py_InitModule4_64() succeeds
47 	d = PyModule_GetDict (m);
48 
49 	pytag_register_classes (d);
50 	pytag_add_constants (m, "GST_");
51 
52 	if (PyErr_Occurred ()) {
PyErr_Occurred()
taking False path
53 	    PyErr_Print ();
54 	    Py_FatalError ("can't initialize module gst.tag");
55 	}
56 }