always allow -1 as a uid

This commit is contained in:
Benjamin Peterson 2013-03-23 16:19:04 -05:00
parent 01d9a775fa
commit d6138c426e
1 changed files with 0 additions and 4 deletions

View File

@ -397,8 +397,6 @@ _Py_Uid_Converter(PyObject *obj, void *p)
goto OverflowUp;
return 0;
}
if ((uid_t)uresult == (uid_t)-1)
goto OverflowUp;
} else {
if (result < 0)
goto OverflowDown;
@ -451,8 +449,6 @@ _Py_Gid_Converter(PyObject *obj, void *p)
goto OverflowUp;
return 0;
}
if ((gid_t)uresult == (gid_t)-1)
goto OverflowUp;
} else {
if (result < 0)
goto OverflowDown;