- fix bug #54061, memory leak in openssl_decrypt

This commit is contained in:
Pierre Joye 2011-02-21 12:47:38 +00:00
parent b526a6ef44
commit f922e31129

View File

@ -4815,6 +4815,7 @@ PHP_FUNCTION(openssl_decrypt)
if (base64_str) {
efree(base64_str);
}
EVP_CIPHER_CTX_cleanup(&cipher_ctx);
}
/* }}} */