Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 54023 invoked from network); 13 Mar 2007 12:21:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Mar 2007 12:21:25 -0000 Received: (qmail 95106 invoked by uid 500); 13 Mar 2007 12:21:32 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 95059 invoked by uid 500); 13 Mar 2007 12:21:32 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: "Apache HTTPD Bugs Notification List" List-Id: Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 95046 invoked by uid 99); 13 Mar 2007 12:21:32 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 05:21:32 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 05:21:23 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 0A7B171406F; Tue, 13 Mar 2007 05:21:02 -0700 (PDT) From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 41142] - Endless loop in apr_allocator_destroy In-Reply-To: X-Bugzilla-Reason: AssignedTo Message-Id: <20070313122103.0A7B171406F@brutus.apache.org> Date: Tue, 13 Mar 2007 05:21:02 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=41142 ------- Additional Comments From hpw@hp-weidinger.at 2007-03-13 05:21 ------- I had a simmilar Problem with apr when destroying a pool twice. (Call apr_pool_destroy twice on the same pool). This causes the allocators "free" list to be corrupted. Next time, you call apr_pool_create(newpool,NULL) apr_pool_create(newpool2,newpool) you get 2 identical nodes, where parent and child seem to be self-references. in allocator_destroy (called by apr_terminate) this leads to an endless loop. Maybe it would help to enhance the apr-functions with debug output. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org