diff options
author | Ruediger Pluem <rpluem@apache.org> | 2010-12-30 11:01:38 +0000 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2010-12-30 11:01:38 +0000 |
commit | 3d75620ce79ae8efe6af8b1905db12a9622ccacd (patch) | |
tree | f81f133fb9658519e1c24508623dc11b7e71ea02 /modules | |
parent | abcc9f0497338d0732c005d09cb565dc6e0d8df4 (diff) | |
download | httpd-3d75620ce79ae8efe6af8b1905db12a9622ccacd.tar.gz |
* Silence compiler warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1053853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/http/http_filters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 7660b2ad7f..9b6334d559 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -897,7 +897,7 @@ static void basic_http_header_check(request_rec *r, static void basic_http_header(request_rec *r, apr_bucket_brigade *bb, const char *protocol) { - char *date; + char *date = NULL; const char *proxy_date = NULL; const char *server = NULL; const char *us = ap_get_server_banner(); |