summaryrefslogtreecommitdiff
path: root/sapi/apache2handler/php_functions.c
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-09-19 14:35:37 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-19 16:22:18 +0200
commitf088aec6cb6b1e2566dac968d46615864d2a0f93 (patch)
tree41159e5a763bc2762af37cc152789f0cb421c9d1 /sapi/apache2handler/php_functions.c
parent40e8c7c90b1715a661f0a7056883d99198da18fe (diff)
downloadphp-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.c2
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", &note_name, &note_name_len, &note_val, &note_val_len) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|s!", &note_name, &note_name_len, &note_val, &note_val_len) == FAILURE) {
RETURN_THROWS();
}