1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00

- fix bug #54061, memory leak in openssl_decrypt

This commit is contained in:
Pierre Joye
2011-02-21 12:47:38 +00:00
parent 7deec592fd
commit 69ba87b183
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -8,8 +8,10 @@
- Exif extension:
. Fixed bug #54002 (crash on crafted tag, reported by Luca Carettoni). (Pierre)
(CVE-2011-0708)
- OpenSSL extension:
. Fixed bug #54060 (Memory leaks when openssl_encrypt). (Pierre)
. Fixed bug #54061 (Memory leaks when openssl_decrypt). (Pierre)
- SPL extension:
. Fixed memory leak in DirectoryIterator::getExtension() and
+1
View File
@@ -4804,6 +4804,7 @@ PHP_FUNCTION(openssl_decrypt)
if (base64_str) {
efree(base64_str);
}
EVP_CIPHER_CTX_cleanup(&cipher_ctx);
}
/* }}} */