summaryrefslogtreecommitdiff
path: root/Modules/_hashopenssl.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-16 00:27:16 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-11-16 00:27:16 +0100
commitc1a57d306c1e1544edb7712bed7c7d5c72816fd4 (patch)
tree9c9aad085bcefa0730d72d32ed781df266182f5a /Modules/_hashopenssl.c
parente990c6e9525a4c26e65b7757f042612d6f17b1eb (diff)
downloadcpython-git-c1a57d306c1e1544edb7712bed7c7d5c72816fd4.tar.gz
Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t
to int, password.len was checked for being smaller than INT_MAX.
Diffstat (limited to 'Modules/_hashopenssl.c')
-rw-r--r--Modules/_hashopenssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
index 1a11bb5b51..b4c5b511ee 100644
--- a/Modules/_hashopenssl.c
+++ b/Modules/_hashopenssl.c
@@ -670,7 +670,7 @@ pbkdf2_hmac(PyObject *self, PyObject *args, PyObject *kwdict)
key = PyBytes_AS_STRING(key_obj);
Py_BEGIN_ALLOW_THREADS
- retval = PKCS5_PBKDF2_HMAC_fast((char*)password.buf, password.len,
+ retval = PKCS5_PBKDF2_HMAC_fast((char*)password.buf, (int)password.len,
(unsigned char *)salt.buf, salt.len,
iterations, digest, dklen,
(unsigned char *)key);