Author: ivan
Date: Wed May 27 17:32:32 2015
New Revision: 1682086
URL: http://svn.apache.org/r1682086
Log:
* subversion/libsvn_fs_fs/pack.c
(copy_rep_to_temp): Check error from svn_stream_close().
Modified:
subversion/trunk/subversion/libsvn_fs_fs/pack.c
Modified: subversion/trunk/subversion/libsvn_fs_fs/pack.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/pack.c?rev=1682086&r1=1682085&r2=1682086&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/pack.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/pack.c Wed May 27 17:32:32 2015
@@ -572,7 +572,7 @@ copy_rep_to_temp(pack_context_t *context
/* read & parse the representation header */
stream = svn_stream_from_aprfile2(rev_file, TRUE, pool);
SVN_ERR(svn_fs_fs__read_rep_header(&rep_header, stream, pool, pool));
- svn_stream_close(stream);
+ SVN_ERR(svn_stream_close(stream));
/* if the representation is a delta against some other rep, link the two */
if ( rep_header->type == svn_fs_fs__rep_delta