File: python-ethtool/ethtool.c
Function: get_coalesce
Error: returning (PyObject*)NULL without setting an exception
812 static PyObject *get_coalesce(PyObject *self __unused, PyObject *args)
813 {
814 	struct ethtool_coalesce coal;
815 
816 	if (get_dev_value(ETHTOOL_GCOALESCE, args, &coal) < 0)
817 		return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
818 
819 	return struct_desc_create_dict(ethtool_coalesce_desc, &coal);
820 }
821 
returning (PyObject*)NULL without setting an exception