You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/01/16 17:49:43 UTC

svn commit: r1652455 - /subversion/trunk/subversion/libsvn_fs_x/revprops.c

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 };