File: python-ethtool/ethtool.c
Function: get_gso
Error: returning (PyObject*)NULL without setting an exception
678 static PyObject *get_gso(PyObject *self __unused, PyObject *args)
679 {
680 	int value = 0;
681 
682 	if (get_dev_int_value(ETHTOOL_GGSO, args, &value) < 0)
683 		return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
684 
685 	return Py_BuildValue("b", value);
686 }
687 
returning (PyObject*)NULL without setting an exception