summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:47:04 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-19 15:47:04 (GMT)
commit1e81a399a25edd23d76601c0c421bdad46b5c19c (patch)
treebeaedf5a8b1782167295d366361600f3f7603e62 /Modules/_ssl.c
parentcb1f74ec405b81dd1319b616829dd576a48603f8 (diff)
downloadcpython-1e81a399a25edd23d76601c0c421bdad46b5c19c.zip
cpython-1e81a399a25edd23d76601c0c421bdad46b5c19c.tar.gz
cpython-1e81a399a25edd23d76601c0c421bdad46b5c19c.tar.bz2
Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a
ValueError if num is negative (instead of raising a SystemError).
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r--Modules/_ssl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 374d930..4b02d8d 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2486,6 +2486,11 @@ PySSL_RAND(int len, int pseudo)
const char *errstr;
PyObject *v;
+ if (len < 0) {
+ PyErr_SetString(PyExc_ValueError, "num must be positive");
+ return NULL;
+ }
+
bytes = PyBytes_FromStringAndSize(NULL, len);
if (bytes == NULL)
return NULL;