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/05 19:46:12 UTC

svn commit: r1649609 - /subversion/trunk/subversion/libsvn_fs_x/cached_data.c

Author: stefan2
Date: Mon Jan  5 18:46:11 2015
New Revision: 1649609

URL: http://svn.apache.org/r1649609
Log:
* subversion/libsvn_fs_x/cached_data.c
  (locate_dir_cache): Remove unused POOL parameter.
  (svn_fs_x__rep_contents_dir,
   svn_fs_x__rep_contents_dir_entry): Update callers.

Modified:
    subversion/trunk/subversion/libsvn_fs_x/cached_data.c

Modified: subversion/trunk/subversion/libsvn_fs_x/cached_data.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/cached_data.c?rev=1649609&r1=1649608&r2=1649609&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/cached_data.c (original)
+++ subversion/trunk/subversion/libsvn_fs_x/cached_data.c Mon Jan  5 18:46:11 2015
@@ -2588,8 +2588,7 @@ get_dir_contents(apr_array_header_t **en
 static svn_cache__t *
 locate_dir_cache(svn_fs_t *fs,
                  svn_fs_x__id_t *key,
-                 svn_fs_x__noderev_t *noderev,
-                 apr_pool_t *pool)
+                 svn_fs_x__noderev_t *noderev)
 {
   svn_fs_x__data_t *ffd = fs->fsap_data;
   if (svn_fs_x__is_txn(noderev->noderev_id.change_set))
@@ -2627,7 +2626,7 @@ svn_fs_x__rep_contents_dir(apr_array_hea
   svn_fs_x__id_t key;
 
   /* find the cache we may use */
-  svn_cache__t *cache = locate_dir_cache(fs, &key, noderev, scratch_pool);
+  svn_cache__t *cache = locate_dir_cache(fs, &key, noderev);
   if (cache)
     {
       svn_boolean_t found;
@@ -2671,7 +2670,7 @@ svn_fs_x__rep_contents_dir_entry(svn_fs_
 
   /* find the cache we may use */
   svn_fs_x__id_t key;
-  svn_cache__t *cache = locate_dir_cache(fs, &key, noderev, scratch_pool);
+  svn_cache__t *cache = locate_dir_cache(fs, &key, noderev);
   if (cache)
     {
       /* Cache lookup. */