From: Ruediger Pluem Date: Thu, 30 Dec 2010 11:01:38 +0000 (+0000) Subject: * Silence compiler warning X-Git-Tag: 2.3.11~306 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d75620ce79ae8efe6af8b1905db12a9622ccacd;p=thirdparty%2Fapache%2Fhttpd.git * Silence compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1053853 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 7660b2ad7f1..9b6334d5592 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();