You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2010/12/30 12:01:38 UTC

svn commit: r1053853 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: rpluem
Date: Thu Dec 30 11:01:38 2010
New Revision: 1053853

URL: http://svn.apache.org/viewvc?rev=1053853&view=rev
Log:
* Silence compiler warning

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1053853&r1=1053852&r2=1053853&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Thu Dec 30 11:01:38 2010
@@ -897,7 +897,7 @@ static void basic_http_header_check(requ
 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();