summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-01-31 09:57:28 +0000
committerDerick Rethans <derick@php.net>2002-01-31 09:57:28 +0000
commitd26afcf3667a41012642c6c39efd8a6cdead0f15 (patch)
treea7e04cebf515eee6375a72483c7390be376124c2
parentc049dda2791acaca59b21ae46e6be10c0b9b4da9 (diff)
downloadphp-git-d26afcf3667a41012642c6c39efd8a6cdead0f15.tar.gz
- Fix for openssl_pkcs7_sign segfaults
(patch by Christian Stocker <chregu@php.net>)
-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 43fb0c623f..fd22322124 100644
--- a/ext/openssl/openssl.c
+++ b/ext/openssl/openssl.c
@@ -2151,7 +2151,7 @@ PHP_FUNCTION(openssl_pkcs7_sign)
char * extracertsfilename = NULL; long extracertsfilename_len;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sszza!|ls",
- &infilename, &infilename_len, *outfilename, &outfilename_len,
+ &infilename, &infilename_len, &outfilename, &outfilename_len,
&zcert, &zprivkey, &zheaders, &flags, &extracertsfilename,
&extracertsfilename_len) == FAILURE)
return;