Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 12635 invoked from network); 6 Aug 2010 17:59:09 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Aug 2010 17:59:09 -0000 Received: (qmail 54586 invoked by uid 500); 6 Aug 2010 17:59:09 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 54540 invoked by uid 500); 6 Aug 2010 17:59:08 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@perl.apache.org List-Id: Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 54521 invoked by uid 99); 6 Aug 2010 17:59:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Aug 2010 17:59:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Fri, 06 Aug 2010 17:59:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E886223889FA; Fri, 6 Aug 2010 17:57:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r983073 - /perl/modperl/trunk/src/modules/perl/modperl_handler.c Date: Fri, 06 Aug 2010 17:57:48 -0000 To: modperl-cvs@perl.apache.org From: pgollucci@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100806175748.E886223889FA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pgollucci Date: Fri Aug 6 17:57:48 2010 New Revision: 983073 URL: http://svn.apache.org/viewvc?rev=983073&view=rev Log: Removed unused variable. Reported by: clang static analyzer Modified: perl/modperl/trunk/src/modules/perl/modperl_handler.c Modified: perl/modperl/trunk/src/modules/perl/modperl_handler.c URL: http://svn.apache.org/viewvc/perl/modperl/trunk/src/modules/perl/modperl_handler.c?rev=983073&r1=983072&r2=983073&view=diff ============================================================================== --- perl/modperl/trunk/src/modules/perl/modperl_handler.c (original) +++ perl/modperl/trunk/src/modules/perl/modperl_handler.c Fri Aug 6 17:57:48 2010 @@ -260,7 +260,7 @@ int modperl_handler_equal(modperl_handle MpAV *modperl_handler_array_merge(apr_pool_t *p, MpAV *base_a, MpAV *add_a) { int i, j; - modperl_handler_t **base_h, **add_h, **mrg_h; + modperl_handler_t **base_h, **add_h; MpAV *mrg_a; if (!add_a) { @@ -273,7 +273,6 @@ MpAV *modperl_handler_array_merge(apr_po mrg_a = apr_array_copy(p, base_a); - mrg_h = (modperl_handler_t **)mrg_a->elts; base_h = (modperl_handler_t **)base_a->elts; add_h = (modperl_handler_t **)add_a->elts;