Remove useless test (flowinfo is unsigned).
This commit is contained in:
commit
f8f5237b2f
|
@ -1437,7 +1437,7 @@ getsockaddrarg(PySocketSockObject *s, PyObject *args,
|
|||
"getsockaddrarg: port must be 0-65535.");
|
||||
return 0;
|
||||
}
|
||||
if (flowinfo < 0 || flowinfo > 0xfffff) {
|
||||
if (flowinfo > 0xfffff) {
|
||||
PyErr_SetString(
|
||||
PyExc_OverflowError,
|
||||
"getsockaddrarg: flowinfo must be 0-1048575.");
|
||||
|
@ -5119,7 +5119,7 @@ socket_getnameinfo(PyObject *self, PyObject *args)
|
|||
if (!PyArg_ParseTuple(sa, "si|II",
|
||||
&hostp, &port, &flowinfo, &scope_id))
|
||||
return NULL;
|
||||
if (flowinfo < 0 || flowinfo > 0xfffff) {
|
||||
if (flowinfo > 0xfffff) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"getsockaddrarg: flowinfo must be 0-1048575.");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue