diff options
author | Rainer Jung <rjung@apache.org> | 2013-06-19 12:21:46 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2013-06-19 12:21:46 +0200 |
commit | 472f2a43ba6e8f341b3d8d4dd9b2ca221fb65285 (patch) | |
tree | 2878f6bfe0b62836ce677372bc5ad08bc0a0ea88 /modules/cache | |
parent | Fix "unused variable" warning. (diff) | |
download | apache2-472f2a43ba6e8f341b3d8d4dd9b2ca221fb65285.tar.xz apache2-472f2a43ba6e8f341b3d8d4dd9b2ca221fb65285.zip |
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
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_cache_socache.c | 2 |
1 files changed, 1 insertions, 1 deletions
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! */ } |