Author: danielsh
Date: Fri Apr 12 13:57:49 2013
New Revision: 1467271
URL: http://svn.apache.org/r1467271
Log:
Follow-up to r1467261:
* tools/dev/fsfs-reorg.c
(add_representation_recursively): Don't drop an svn_error_t.
Modified:
subversion/trunk/tools/dev/fsfs-reorg.c
Modified: subversion/trunk/tools/dev/fsfs-reorg.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/dev/fsfs-reorg.c?rev=1467271&r1=1467270&r2=1467271&view=diff
==============================================================================
--- subversion/trunk/tools/dev/fsfs-reorg.c (original)
+++ subversion/trunk/tools/dev/fsfs-reorg.c Fri Apr 12 13:57:49 2013
@@ -2106,7 +2106,7 @@ add_representation_recursively(fs_fs_t *
apr_pool_t *text_pool = svn_pool_create(pool);
svn_stringbuf_t *content;
- get_combined_window(&content, fs, representation, text_pool);
+ SVN_ERR(get_combined_window(&content, fs, representation, text_pool));
representation->target.size = content->len;
*current_pos += representation->target.size + 13;