File: Modules/LDAPObject.c
Function: l_ldap_set_option
Error: returning (PyObject*)NULL without setting an exception
1178 static PyObject*
1179 l_ldap_set_option(PyObject* self, PyObject *args)
1180 {
1181     PyObject *value;
1182     int option;
1183 
1184     if (!PyArg_ParseTuple(args, "iO:set_option", &option, &value))
when _PyArg_ParseTuple_SizeT() succeeds
taking False path
1185         return NULL;
1186     if (LDAP_set_option((LDAPObject *)self, option, value) == -1)
when considering value == (int)-1 from Modules/LDAPObject.c:1186
taking True path
1187         return NULL;
1188     Py_INCREF(Py_None);
1189     return Py_None;
1190 }
returning (PyObject*)NULL without setting an exception