Author: stefan2
Date: Tue May 17 15:26:57 2011
New Revision: 1104332

URL: http://svn.apache.org/viewvc?rev=1104332&view=rev
Log:
* subversion/libsvn_fs_fs/tree.c
  (make_txn_root): add missing SVN_ERR wrapper

Suggested by: danielsh

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

Modified: subversion/trunk/subversion/libsvn_fs_fs/tree.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/tree.c?rev=1104332&r1=1104331&r2=1104332&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/tree.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/tree.c Tue May 17 15:26:57 2011
@@ -3908,7 +3908,7 @@ make_txn_root(svn_fs_root_t **root_p,
 
      Note that we cannot put those caches in frd because that content
      fs root object is not available where we would need it. */
-  svn_fs_fs__initialize_txn_caches(fs, txn, pool);
+  SVN_ERR(svn_fs_fs__initialize_txn_caches(fs, txn, pool));
 
   root->fsap_data = frd;
 


Reply via email to