From d26afcf3667a41012642c6c39efd8a6cdead0f15 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 31 Jan 2002 09:57:28 +0000 Subject: [PATCH] - Fix for openssl_pkcs7_sign segfaults (patch by Christian Stocker ) --- ext/openssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1