MERGE: Closes #15793: Stack corruption in ssl.RAND_egd()

This commit is contained in:
Jesus Cea 2012-09-11 02:08:48 +02:00
commit b7a2800831
3 changed files with 6 additions and 7 deletions

View file

@ -2481,7 +2481,7 @@ PySSL_RAND_egd(PyObject *self, PyObject *args)
PyObject *path;
int bytes;
if (!PyArg_ParseTuple(args, "O&|i:RAND_egd",
if (!PyArg_ParseTuple(args, "O&:RAND_egd",
PyUnicode_FSConverter, &path))
return NULL;