summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2003-11-20 09:14:51 +0000
committerAndi Gutmans <andi@php.net>2003-11-20 09:14:51 +0000
commitfea31127ec2e302eef0d4b7f4614b6378a140a31 (patch)
tree87ff1f3cc183854a2b8d64a9aa8da4009c1fce17
parent6f6df4f9a4ffd7feb474d3c6320741085e1f3bf5 (diff)
downloadphp-git-fea31127ec2e302eef0d4b7f4614b6378a140a31.tar.gz
- Fix Windows build
-rw-r--r--ext/standard/head.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/head.c b/ext/standard/head.c
index 305b3fc750..87fe5f65a7 100644
--- a/ext/standard/head.c
+++ b/ext/standard/head.c
@@ -246,7 +246,7 @@ PHP_FUNCTION(headers_list)
RETURN_FALSE;
}
array_init(return_value);
- zend_llist_apply_with_argument(&SG(sapi_headers).headers, php_head_apply_header_list_to_hash, return_value);
+ zend_llist_apply_with_argument(&SG(sapi_headers).headers, php_head_apply_header_list_to_hash, return_value TSRMLS_CC);
}
/* }}} */