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 2016/03/06 20:23:39 UTC

svn commit: r1733831 - /subversion/trunk/subversion/tests/libsvn_fs/fs-test.c

Author: stefan2
Date: Sun Mar  6 19:23:39 2016
New Revision: 1733831

URL: http://svn.apache.org/viewvc?rev=1733831&view=rev
Log:
* subversion/tests/libsvn_fs/fs-test.c
  (test_large_changed_paths_list): Don't leak errors, report them.

Modified:
    subversion/trunk/subversion/tests/libsvn_fs/fs-test.c

Modified: subversion/trunk/subversion/tests/libsvn_fs/fs-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_fs/fs-test.c?rev=1733831&r1=1733830&r2=1733831&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_fs/fs-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_fs/fs-test.c Sun Mar  6 19:23:39 2016
@@ -7113,9 +7113,9 @@ test_large_changed_paths_list(const svn_
   /* Now, read the change list.
    * Do it twice to cover cached data as well. */
   svn_pool_clear(iterpool);
-  verify_added_files_list(fs, rev, iterpool);
+  SVN_ERR(verify_added_files_list(fs, rev, iterpool));
   svn_pool_clear(iterpool);
-  verify_added_files_list(fs, rev, iterpool);
+  SVN_ERR(verify_added_files_list(fs, rev, iterpool));
   svn_pool_destroy(iterpool);
 
   return SVN_NO_ERROR;