File: ./gst.override
Function: _wrap_gst_debug_log
Error: returning (PyObject*)NULL without setting an exception
748 static PyObject *
749 _wrap_gst_debug_log (PyObject *whatever, PyObject *string)
750 {
751 #ifndef GST_DISABLE_GST_DEBUG
752     gchar	*filename;
753     gchar	*func;
754     gint	lineno;
755     gchar	*message;
756 
757     PyObject *py_level = NULL;
758     GstDebugLevel level;
759 
760     if (!PyArg_ParseTuple(string, "Ossis:gst.debug_log", &py_level, &filename, &func, &lineno, &message)) {
when PyArg_ParseTuple() succeeds
taking False path
761 	return NULL;
762     }
763     if (pyg_enum_get_value(GST_TYPE_DEBUG_LEVEL, py_level, (gint *)&level)) {
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
calling unknown gint (*) (GType, struct PyObject *, gint *) from ./gst.override:763
when considering range: -0x80000000 <= value <= -1
taking True path
764         return NULL;
765     }
766 
767     /* gst_debug_log : category, level, file, function, line, object, format, va_list */
768     gst_debug_log (python_debug, level, filename, func, lineno, NULL, "%s", message);
769 #endif
770     Py_INCREF (Py_None);
771     return Py_None;
772 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this