Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2AC6C200BA2 for ; Sun, 16 Oct 2016 16:10:36 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 29628160AE2; Sun, 16 Oct 2016 14:10:36 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 73731160ACE for ; Sun, 16 Oct 2016 16:10:35 +0200 (CEST) Received: (qmail 82834 invoked by uid 500); 16 Oct 2016 14:10:34 -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 82823 invoked by uid 99); 16 Oct 2016 14:10:34 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Oct 2016 14:10:34 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 433F8C028B for ; Sun, 16 Oct 2016 14:10:34 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id eZZZ_UpHEuQv for ; Sun, 16 Oct 2016 14:10:32 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 4CE745F2F1 for ; Sun, 16 Oct 2016 14:10:31 +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 6ED02E0239 for ; Sun, 16 Oct 2016 14:10:30 +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 6F5A43A0230 for ; Sun, 16 Oct 2016 14:10:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1765159 - /subversion/trunk/subversion/libsvn_client/conflicts.c Date: Sun, 16 Oct 2016 14:10:30 -0000 To: commits@subversion.apache.org From: stsp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161016141030.6F5A43A0230@svn01-us-west.apache.org> archived-at: Sun, 16 Oct 2016 14:10:36 -0000 Author: stsp Date: Sun Oct 16 14:10:30 2016 New Revision: 1765159 URL: http://svn.apache.org/viewvc?rev=1765159&view=rev Log: Fix another pool lifetime bug in the conflict resolver. * subversion/libsvn_client/conflicts.c (conflict_tree_get_details_incoming_delete): Pass the correct result pool to find_revision_for_suspected_deletion(). Modified: subversion/trunk/subversion/libsvn_client/conflicts.c Modified: subversion/trunk/subversion/libsvn_client/conflicts.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/conflicts.c?rev=1765159&r1=1765158&r2=1765159&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/conflicts.c (original) +++ subversion/trunk/subversion/libsvn_client/conflicts.c Sun Oct 16 14:10:30 2016 @@ -3570,7 +3570,7 @@ conflict_tree_get_details_incoming_delet svn_relpath_basename(new_repos_relpath, scratch_pool), svn_relpath_dirname(new_repos_relpath, scratch_pool), new_rev, old_rev, old_repos_relpath, old_rev, ctx, - scratch_pool, scratch_pool)); + conflict->pool, scratch_pool)); if (deleted_rev == SVN_INVALID_REVNUM) { /* We could not determine the revision in which the node was