Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 124CE10F15 for ; Thu, 6 Feb 2014 08:04:33 +0000 (UTC) Received: (qmail 54219 invoked by uid 500); 6 Feb 2014 08:04:32 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 54114 invoked by uid 500); 6 Feb 2014 08:04:30 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 54107 invoked by uid 99); 6 Feb 2014 08:04:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Feb 2014 08:04:29 +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; Thu, 06 Feb 2014 08:04:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3BF4E2388993; Thu, 6 Feb 2014 08:04:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1565103 - /subversion/trunk/subversion/libsvn_repos/reporter.c Date: Thu, 06 Feb 2014 08:04:02 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140206080402.3BF4E2388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Thu Feb 6 08:04:01 2014 New Revision: 1565103 URL: http://svn.apache.org/r1565103 Log: * subversion/libsvn_repos/reporter.c (delta_dirs): Destroy a sub-pool as soon as it is no longer needed. Modified: subversion/trunk/subversion/libsvn_repos/reporter.c Modified: subversion/trunk/subversion/libsvn_repos/reporter.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/reporter.c?rev=1565103&r1=1565102&r2=1565103&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_repos/reporter.c (original) +++ subversion/trunk/subversion/libsvn_repos/reporter.c Thu Feb 6 08:04:01 2014 @@ -1196,6 +1196,8 @@ delta_dirs(report_baton_t *b, svn_revnum but don't update the entry yet. */ if (s_entries) svn_hash_sets(s_entries, name, NULL); + + svn_pool_destroy(info->pool); continue; }