diff options
author | Daniel Lowrey <rdlowrey@php.net> | 2015-03-06 11:29:56 -0700 |
---|---|---|
committer | Daniel Lowrey <rdlowrey@php.net> | 2015-03-06 11:29:56 -0700 |
commit | 0928bad9ac9110a8a321c334444b7026bffad5f7 (patch) | |
tree | 067bb281c47fe27de8cd039f276e438408dbc525 /ext/openssl/openssl.c | |
parent | 469b5a9584b1647fdccb37b663dd076ba991d764 (diff) | |
download | php-git-0928bad9ac9110a8a321c334444b7026bffad5f7.tar.gz |
Fixed bug #69197 (openssl_pkcs7_sign handles default value incorrectly)
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 e78d3b15aa..1603009709 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -4279,7 +4279,7 @@ PHP_FUNCTION(openssl_pkcs7_sign) char * outfilename; int outfilename_len; char * extracertsfilename = NULL; int extracertsfilename_len; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ppZZa!|lp", + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ppZZa!|lp!", &infilename, &infilename_len, &outfilename, &outfilename_len, &zcert, &zprivkey, &zheaders, &flags, &extracertsfilename, &extracertsfilename_len) == FAILURE) { |