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 2013/01/09 05:04:24 UTC

svn commit: r1430674 - /subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c

Author: stefan2
Date: Wed Jan  9 04:04:24 2013
New Revision: 1430674

URL: http://svn.apache.org/viewvc?rev=1430674&view=rev
Log:
On the fsfs-format7 branch: Follow-up to r1430673 - forgot to commit a file.

* subversion/libsvn_fs_base/lock.c
  (svn_fs_base__get_locks): update caller

Modified:
    subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c

Modified: subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c
URL: http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c?rev=1430674&r1=1430673&r2=1430674&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c (original)
+++ subversion/branches/fsfs-format7/subversion/libsvn_fs_base/lock.c Wed Jan  9 04:04:24 2013
@@ -463,9 +463,11 @@ svn_fs_base__get_locks(svn_fs_t *fs,
   args.path = svn_fs__canonicalize_abspath(path, pool);
   args.depth = depth;
   /* Enough for 100+ locks if the comments are small. */
-  args.stream = svn_stream__from_spillbuf(4 * 1024  /* blocksize */,
+  args.stream = svn_stream__from_spillbuf
+                    (svn_spillbuf__create(4 * 1024  /* blocksize */,
                                           64 * 1024 /* maxsize */,
-                                          pool);
+                                          pool),
+                     pool);
   SVN_ERR(svn_fs_base__retry_txn(fs, txn_body_get_locks, &args, FALSE, pool));
 
   /* Read the stream calling GET_LOCKS_FUNC(). */