From 120c2279bdf9db8486a60b0e85c0e31f6ff4e8fc Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 23 Jan 2012 14:13:33 +0000 Subject: [PATCH] initialize with NULL --- php_http_env.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_http_env.c b/php_http_env.c index eb7a630..f7df9d0 100644 --- a/php_http_env.c +++ b/php_http_env.c @@ -694,7 +694,7 @@ PHP_METHOD(HttpEnv, setResponseHeader) { char *header_name_str; int header_name_len; - zval *header_value; + zval *header_value = NULL; long code = 0; zend_bool replace_header = 1; -- 2.30.2