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 2014/09/22 21:08:55 UTC

svn commit: r1626873 - /subversion/trunk/subversion/libsvn_fs_fs/index.c

Author: stefan2
Date: Mon Sep 22 19:08:55 2014
New Revision: 1626873

URL: http://svn.apache.org/r1626873
Log:
Remove unused parameter.

* subversion/libsvn_fs_fs/index.c
  (read_entry): POOL parameter is not used -> remove it.
  (get_p2l_page): Update caller.

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/index.c

Modified: subversion/trunk/subversion/libsvn_fs_fs/index.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/index.c?rev=1626873&r1=1626872&r2=1626873&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/index.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/index.c Mon Sep 22 19:08:55 2014
@@ -2041,15 +2041,14 @@ get_p2l_page_info(p2l_page_info_baton_t 
 
 /* Read a mapping entry from the phys-to-log index STREAM and append it to
  * RESULT.  *ITEM_INDEX contains the phys offset for the entry and will
- * be moved forward by the size of entry.  Use POOL for allocations.
+ * be moved forward by the size of entry.
  */
 static svn_error_t *
 read_entry(svn_fs_fs__packed_number_stream_t *stream,
            apr_off_t *item_offset,
            svn_revnum_t *last_revision,
            apr_uint64_t *last_compound,
-           apr_array_header_t *result,
-           apr_pool_t *pool)
+           apr_array_header_t *result)
 {
   apr_uint64_t value;
 
@@ -2137,7 +2136,7 @@ get_p2l_page(apr_array_header_t **entrie
   do
     {
       SVN_ERR(read_entry(rev_file->p2l_stream, &item_offset, &last_revision,
-                         &last_compound, result, result_pool));
+                         &last_compound, result));
       offset = packed_stream_offset(rev_file->p2l_stream);
     }
   while (offset < next_offset);
@@ -2151,7 +2150,7 @@ get_p2l_page(apr_array_header_t **entrie
       last_revision = start_revision;
       last_compound = 0;
       SVN_ERR(read_entry(rev_file->p2l_stream, &item_offset, &last_revision,
-                         &last_compound, result, result_pool));
+                         &last_compound, result));
     }
 
   *entries = result;