File: python-ethtool/ethtool.c
Function: set_tso
Error: returning (PyObject*)NULL without setting an exception
659 static PyObject *set_tso(PyObject *self __unused, PyObject *args)
660 {
661 	if (dev_set_int_value(ETHTOOL_STSO, args) < 0)
662 		return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
663 
664 	Py_INCREF(Py_None);
665 	return Py_None;
666 }
667 
returning (PyObject*)NULL without setting an exception