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 0600410152 for ; Fri, 16 Jan 2015 16:49:42 +0000 (UTC) Received: (qmail 54686 invoked by uid 500); 16 Jan 2015 16:49:43 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 54657 invoked by uid 500); 16 Jan 2015 16:49:43 -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 54646 invoked by uid 99); 16 Jan 2015 16:49:43 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Jan 2015 16:49:43 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id A78A0AC0059; Fri, 16 Jan 2015 16:49:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1652455 - /subversion/trunk/subversion/libsvn_fs_x/revprops.c Date: Fri, 16 Jan 2015 16:49:43 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150116164943.A78A0AC0059@hades.apache.org> Author: stefan2 Date: Fri Jan 16 16:49:43 2015 New Revision: 1652455 URL: http://svn.apache.org/r1652455 Log: * subversion/libsvn_fs_x/revprops.c (parse_revprop): Use the SCRATCH_POOL where no result data is being constructed. Modified: subversion/trunk/subversion/libsvn_fs_x/revprops.c Modified: subversion/trunk/subversion/libsvn_fs_x/revprops.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/revprops.c?rev=1652455&r1=1652454&r2=1652455&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_fs_x/revprops.c (original) +++ subversion/trunk/subversion/libsvn_fs_x/revprops.c Fri Jan 16 16:49:43 2015 @@ -677,7 +677,7 @@ parse_revprop(apr_hash_t **properties, SVN_ERR(svn_hash_read2(*properties, stream, SVN_HASH_TERMINATOR, result_pool)); - if (has_revprop_cache(fs, result_pool)) + if (has_revprop_cache(fs, scratch_pool)) { svn_fs_x__data_t *ffd = fs->fsap_data; svn_fs_x__pair_cache_key_t key = { 0 };