diff options
author | Nikita Popov <nikic@php.net> | 2015-03-09 11:10:52 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-03-09 11:10:52 +0100 |
commit | c488a4570197240af8e05eaab95c0b308c2246d8 (patch) | |
tree | af313013db285d307d5dc0ad314654225b4832c9 | |
parent | a81e65a5018a04379914c605f7a9c69ac8941600 (diff) | |
download | php-git-c488a4570197240af8e05eaab95c0b308c2246d8.tar.gz |
Remove deprecated mcrypt_generic_end() alias
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | UPGRADING | 4 | ||||
-rw-r--r-- | ext/mcrypt/mcrypt.c | 1 |
3 files changed, 5 insertions, 1 deletions
@@ -103,6 +103,7 @@ - Mcrypt: . Fixed possible read after end of buffer and use after free. (Dmitry) + . Removed mcrypt_generic_end() alias. (Nikita) - Opcache: . Fixed bug with try blocks being removed when extended_info opcode @@ -361,6 +361,10 @@ Other . gmp_setbit() and gmp_clrbit() now return FALSE for negative indices, making them consistent with other GMP functions. +- Mcrypt + . Removed deprecate mcrypt_generic_end() alias in favor of + mcrypt_generic_deinit(). + - Session . session_start() accepts all INI settings as array. e.g. ['cache_limiter'=>'private'] sets session.cache_limiter=private. It also supports 'read_and_close' which closes diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 055ac6e720..83184f9b6f 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -258,7 +258,6 @@ const zend_function_entry mcrypt_functions[] = { /* {{{ */ PHP_FE(mcrypt_generic_init, arginfo_mcrypt_generic_init) PHP_FE(mcrypt_generic, arginfo_mcrypt_generic) PHP_FE(mdecrypt_generic, arginfo_mdecrypt_generic) - PHP_DEP_FALIAS(mcrypt_generic_end, mcrypt_generic_deinit, arginfo_mcrypt_generic_deinit) PHP_FE(mcrypt_generic_deinit, arginfo_mcrypt_generic_deinit) PHP_FE(mcrypt_enc_self_test, arginfo_mcrypt_enc_self_test) |