Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@locus.apache.org Received: (qmail 94494 invoked from network); 5 May 2007 12:00:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 May 2007 12:00:44 -0000 Received: (qmail 28503 invoked by uid 500); 5 May 2007 12:00:50 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 28251 invoked by uid 500); 5 May 2007 12:00:49 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 28227 invoked by uid 99); 5 May 2007 12:00:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 May 2007 05:00:49 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of dykciarz@gmail.com designates 66.249.92.169 as permitted sender) Received: from [66.249.92.169] (HELO ug-out-1314.google.com) (66.249.92.169) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 May 2007 05:00:40 -0700 Received: by ug-out-1314.google.com with SMTP id 75so694179ugb for ; Sat, 05 May 2007 05:00:19 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:from:to:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=q1kV6rqzqc+R1Q5qPIrnVlFHHIGWYTfB5fAJtD0+zln2Oq/2KBZ5ptPFuRH/TiJBSFQ2yvQdOSCp38tpFuhC+6O3yRbTZ+JqwDZjYticRDCXqkGIxA6ohnAuXzcbcm1WViJxbv3cJNx0vLZHt2ZGTL57W/CRsndz8LvOGKiIE5Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=AO4sn93Elfb16f5doeGb6kysrkSiaHS9JD3wh7ev7+AFKMVHFQpOcEw52dtxDfBH8gBqvm6g/zvp13TqCn7XdmLz+5ssmh+IujXiWcPvogh719GcqxTjDn2ow32U+jVk4AcnYghgTCqE7EiU7eB2mQKKxr88qt1W1qIxyYfBQzk= Received: by 10.66.232.10 with SMTP id e10mr3429246ugh.1178366419250; Sat, 05 May 2007 05:00:19 -0700 (PDT) Received: from bastion ( [130.240.201.225]) by mx.google.com with ESMTP id s7sm1394072uge.2007.05.05.05.00.17; Sat, 05 May 2007 05:00:17 -0700 (PDT) Date: Sat, 5 May 2007 14:00:13 +0200 From: Mike To: modules-dev@httpd.apache.org, jzobel@heute-morgen.de Subject: Re: Child pool not usable for logging Message-ID: <20070505120013.GA5941@bastion> References: <1178358143.4618.18.camel@test.asus> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <1178358143.4618.18.camel@test.asus> User-Agent: Mutt/1.5.15 (2007-04-06) X-Virus-Checked: Checked by ClamAV on apache.org On Sat, May 05, 2007 at 11:42:23AM +0200, Joachim Zobel wrote: > I am currently trying to track down a glibc memory corruption. To do > this I tried the following (see below). This is done on prefork. > > ap_log_perror(APLOG_MARK, APLOG_DEBUG, 0, p_cur, > "xml2_free will free %x.", mem); > free(mem); > Shouldn't you use arp_pool_cleanup_*() instead of bare free? Regards.