Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8B2C1C81D for ; Wed, 19 Jun 2013 10:22:10 +0000 (UTC) Received: (qmail 31902 invoked by uid 500); 19 Jun 2013 10:22:10 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 31839 invoked by uid 500); 19 Jun 2013 10:22:09 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 31831 invoked by uid 99); 19 Jun 2013 10:22:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jun 2013 10:22:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jun 2013 10:22:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 12A2C238889B; Wed, 19 Jun 2013 10:21:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1494536 - /httpd/httpd/trunk/modules/cache/mod_cache_socache.c Date: Wed, 19 Jun 2013 10:21:46 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130619102147.12A2C238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Wed Jun 19 10:21:46 2013 New Revision: 1494536 URL: http://svn.apache.org/r1494536 Log: Fix "variable 'rv' may be used uninitialized in this function" warning. Modified: httpd/httpd/trunk/modules/cache/mod_cache_socache.c Modified: httpd/httpd/trunk/modules/cache/mod_cache_socache.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache_socache.c?rev=1494536&r1=1494535&r2=1494536&view=diff ============================================================================== --- httpd/httpd/trunk/modules/cache/mod_cache_socache.c (original) +++ httpd/httpd/trunk/modules/cache/mod_cache_socache.c Wed Jun 19 10:21:46 2013 @@ -1421,7 +1421,7 @@ static int socache_post_config(apr_pool_ &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! */ }