From: Jeff Trawick Date: Mon, 8 Jul 2002 12:58:16 +0000 (+0000) Subject: silence an unhelpful gcc warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=099918faf7118a82aa22dd641ff574d1a72715fd;p=apache silence an unhelpful gcc warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95971 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 1f86d3b4fd..b68460955e 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -744,7 +744,7 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r, apr_bucket_brigade *bb) { char *last_field = NULL; - apr_size_t last_len; + apr_size_t last_len = 0; apr_size_t alloc_len = 0; char *field; char *value;