summaryrefslogtreecommitdiff
path: root/ext/openssl/openssl.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-07-10 07:57:15 +0000
committerDmitry Stogov <dmitry@php.net>2007-07-10 07:57:15 +0000
commita84dbc7cb65166608df88b53649cf424c87fe781 (patch)
tree72b732d44455ae08d23bac35c6d97efa9d491761 /ext/openssl/openssl.c
parente4355a6377db44e00cb66bc360543c481347491d (diff)
downloadphp-git-a84dbc7cb65166608df88b53649cf424c87fe781.tar.gz
Fixed bug #41353
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r--ext/openssl/openssl.c2
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;
}