File: clawsmailmodule.c
Function: get_gobj_from_address
Error: returning (PyObject*)NULL without setting an exception
43 PyObject* get_gobj_from_address(gpointer addr)
44 {
45   GObject *obj;
46 
47   if (!G_IS_OBJECT(addr))
48       return NULL;
when treating unknown void * from clawsmailmodule.c:44 as non-NULL
taking False path
when treating unknown struct GTypeClass * from clawsmailmodule.c:48 as non-NULL
taking True path
when treating unknown struct GTypeClass * from clawsmailmodule.c:48 as non-NULL
when considering range: 0 <= value <= 79
taking False path
when considering range: -0x80000000 <= value <= -1
taking False path
49 
50   obj = G_OBJECT(addr);
51 
52   if (!obj)
53       return NULL;
when treating unknown struct GTypeInstance * from clawsmailmodule.c:51 as NULL
taking True path
54 
55   return pygobject_new(obj);
56 }
57 
returning (PyObject*)NULL without setting an exception found 10 similar trace(s) to this