From: Ruediger Pluem Date: Mon, 24 Jul 2006 07:43:40 +0000 (+0000) Subject: * Initialize zRC to avoid a compiler warning. X-Git-Tag: 2.3.0~2223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1942c793fcc261082477c90eba4f64bff591026d;p=thirdparty%2Fapache%2Fhttpd.git * Initialize zRC to avoid a compiler warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@424950 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 037eae55de5..0d769d24752 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -218,7 +218,7 @@ static int flush_libz_buffer(deflate_ctx *ctx, deflate_filter_config *c, struct apr_bucket_alloc_t *bucket_alloc, int (*libz_func)(z_streamp, int), int flush) { - int zRC; + int zRC = Z_OK; int done = 0; unsigned int deflate_len; apr_bucket *b;