From 9caa92c3e34a41889946e29270f812973d433476 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 28 Jan 2002 00:43:48 +0000 Subject: [PATCH] some level of gcc seems to be confused about whether or not b is used before being set; shut it up git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93056 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_charset_lite.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/experimental/mod_charset_lite.c b/modules/experimental/mod_charset_lite.c index aad8bcb018..935de560b0 100644 --- a/modules/experimental/mod_charset_lite.c +++ b/modules/experimental/mod_charset_lite.c @@ -716,7 +716,8 @@ static apr_status_t xlate_brigade(charset_filter_ctx_t *ctx, apr_size_t *buffer_avail, int *hit_eos) { - apr_bucket *b, *consumed_bucket; + apr_bucket *b = NULL; /* set to NULL only to quiet some gcc */ + apr_bucket *consumed_bucket; const char *bucket; apr_size_t bytes_in_bucket; /* total bytes read from current bucket */ apr_size_t bucket_avail; /* bytes left in current bucket */ -- 2.40.0