File: python-ethtool/ethtool.c
Function: get_ufo
Error: returning (PyObject*)NULL without setting an exception
668 static PyObject *get_ufo(PyObject *self __unused, PyObject *args)
669 {
670 	int value = 0;
671 
672 	if (get_dev_int_value(ETHTOOL_GUFO, args, &value) < 0)
673 		return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
674 
675 	return Py_BuildValue("b", value);
676 }
677 
returning (PyObject*)NULL without setting an exception