Skip to content

Commit 251af73

Browse files
committed
Fix nullability of openssl_cms_sign() parameter
1 parent 2540f68 commit 251af73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5907,7 +5907,7 @@ PHP_FUNCTION(openssl_cms_sign)
59075907
Z_PARAM_OPTIONAL
59085908
Z_PARAM_LONG(flags)
59095909
Z_PARAM_LONG(encoding)
5910-
Z_PARAM_PATH(extracertsfilename, extracertsfilename_len)
5910+
Z_PARAM_PATH_OR_NULL(extracertsfilename, extracertsfilename_len)
59115911
ZEND_PARSE_PARAMETERS_END();
59125912

59135913
RETVAL_FALSE;

0 commit comments

Comments
 (0)