diff options
author | Dmitry Stogov <dmitry@php.net> | 2007-07-10 07:57:15 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2007-07-10 07:57:15 +0000 |
commit | a84dbc7cb65166608df88b53649cf424c87fe781 (patch) | |
tree | 72b732d44455ae08d23bac35c6d97efa9d491761 /ext/openssl/openssl.c | |
parent | e4355a6377db44e00cb66bc360543c481347491d (diff) | |
download | php-git-a84dbc7cb65166608df88b53649cf424c87fe781.tar.gz |
Fixed bug #41353
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r-- | ext/openssl/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index eb32247ceb..7402efaca5 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1559,7 +1559,7 @@ PHP_FUNCTION(openssl_pkcs12_read) BIO * bio_in = NULL; int i; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szs", &zp12, &zout, &pass, &pass_len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szs", &zp12, &zp12_len, &zout, &pass, &pass_len) == FAILURE) { return; } |