diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-19 14:35:37 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-19 16:22:18 +0200 |
commit | f088aec6cb6b1e2566dac968d46615864d2a0f93 (patch) | |
tree | 41159e5a763bc2762af37cc152789f0cb421c9d1 /sapi/apache2handler/php_functions.c | |
parent | 40e8c7c90b1715a661f0a7056883d99198da18fe (diff) | |
download | php-git-f088aec6cb6b1e2566dac968d46615864d2a0f93.tar.gz |
Fix UNKNOWN default value of apache_note()
Closes GH-6167
Diffstat (limited to 'sapi/apache2handler/php_functions.c')
-rw-r--r-- | sapi/apache2handler/php_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index 1a601e6906..e7d29450ee 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -224,7 +224,7 @@ PHP_FUNCTION(apache_note) size_t note_name_len, note_val_len; char *old_note_val=NULL; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|s", ¬e_name, ¬e_name_len, ¬e_val, ¬e_val_len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|s!", ¬e_name, ¬e_name_len, ¬e_val, ¬e_val_len) == FAILURE) { RETURN_THROWS(); } |