We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b044a74 commit 493b2bfCopy full SHA for 493b2bf
NEWS
@@ -6,6 +6,10 @@ PHP NEWS
6
. Fixed bug #73402 (Opcache segfault when using class constant to call a
7
method). (Laruence)
8
9
+- OpenSSL
10
+ . Fixed bug #72776 (Invalid parameter in memcpy function trough
11
+ openssl_pbkdf2). (Jakub Zelenka)
12
+
13
10 Nov 2016, PHP 5.6.28
14
15
- Core:
ext/openssl/openssl.c
@@ -4059,7 +4059,7 @@ PHP_FUNCTION(openssl_pbkdf2)
4059
return;
4060
}
4061
4062
- if (key_length <= 0) {
+ if (key_length <= 0 || key_length > INT_MAX) {
4063
RETURN_FALSE;
4064
4065
0 commit comments