From 472f2a43ba6e8f341b3d8d4dd9b2ca221fb65285 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Wed, 19 Jun 2013 10:21:46 +0000 Subject: [PATCH] Fix "variable 'rv' may be used uninitialized in this function" warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1494536 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/mod_cache_socache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cache/mod_cache_socache.c b/modules/cache/mod_cache_socache.c index 8f58c12c28..220f9c8bd0 100644 --- a/modules/cache/mod_cache_socache.c +++ b/modules/cache/mod_cache_socache.c @@ -1421,7 +1421,7 @@ static int socache_post_config(apr_pool_t *pconf, apr_pool_t *plog, &conf->provider->socache_instance, conf->provider->args, ptmp, pconf); if (errmsg) { - ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, + ap_log_perror(APLOG_MARK, APLOG_CRIT, 0, plog, APLOGNO(02392) "%s", errmsg); return 500; /* An HTTP status would be a misnomer! */ } -- 2.50.0