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 0098B18B3E for ; Tue, 19 Jan 2016 11:24:21 +0000 (UTC) Received: (qmail 26517 invoked by uid 500); 19 Jan 2016 11:24:20 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 26452 invoked by uid 500); 19 Jan 2016 11:24:20 -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 26443 invoked by uid 99); 19 Jan 2016 11:24:20 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jan 2016 11:24:20 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 6F8AE1804F3 for ; Tue, 19 Jan 2016 11:24:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.446 X-Spam-Level: X-Spam-Status: No, score=0.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id fKlqtQ-xni5k for ; Tue, 19 Jan 2016 11:24:19 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id 131A7203BE for ; Tue, 19 Jan 2016 11:24:19 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 3345CE0185 for ; Tue, 19 Jan 2016 11:24:18 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 096E73A0572 for ; Tue, 19 Jan 2016 11:24:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1725470 - /httpd/httpd/trunk/server/mpm/motorz/motorz.c Date: Tue, 19 Jan 2016 11:24:17 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160119112418.096E73A0572@svn01-us-west.apache.org> Author: rjung Date: Tue Jan 19 11:24:17 2016 New Revision: 1725470 URL: http://svn.apache.org/viewvc?rev=1725470&view=rev Log: Silence compiler warning: variable 'bucket_alloc' set but not used Modified: httpd/httpd/trunk/server/mpm/motorz/motorz.c Modified: httpd/httpd/trunk/server/mpm/motorz/motorz.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/motorz/motorz.c?rev=1725470&r1=1725469&r2=1725470&view=diff ============================================================================== --- httpd/httpd/trunk/server/mpm/motorz/motorz.c (original) +++ httpd/httpd/trunk/server/mpm/motorz/motorz.c Tue Jan 19 11:24:17 2016 @@ -848,7 +848,6 @@ static void child_main(motorz_core_t *mz int i; ap_listen_rec *lr; ap_sb_handle_t *sbh; - apr_bucket_alloc_t *bucket_alloc; const char *lockfile; mpm_state = AP_MPMQ_STARTING; /* for benefit of any hooks that run as this @@ -969,8 +968,6 @@ static void child_main(motorz_core_t *mz mpm_state = AP_MPMQ_RUNNING; - bucket_alloc = apr_bucket_alloc_create(pchild); - /* die_now is set when AP_SIG_GRACEFUL is received in the child; * shutdown_pending is set when SIGTERM is received when running * in single process mode. */