commit | c8754a13e607ebc70f12a10297c76dc574a91d5b | [log] [tgz] |
---|---|---|
author | Jesus Cea <jcea@jcea.es> | Tue Sep 11 02:00:58 2012 +0200 |
committer | Jesus Cea <jcea@jcea.es> | Tue Sep 11 02:00:58 2012 +0200 |
tree | 55422157d1be2e8443251a5ed15bb7a7bd15ad18 | |
parent | e8db356cf1084105a97db9457a2374209868005b [diff] |
Closes #15793: Stack corruption in ssl.RAND_egd()
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 0a84118..e9de8ca 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c
@@ -1917,7 +1917,7 @@ PyObject *path; int bytes; - if (!PyArg_ParseTuple(args, "O&|i:RAND_egd", + if (!PyArg_ParseTuple(args, "O&:RAND_egd", PyUnicode_FSConverter, &path)) return NULL;