You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2015/05/27 20:23:59 UTC

svn commit: r1682093 - /subversion/trunk/subversion/libsvn_fs_fs/pack.c

Author: philip
Date: Wed May 27 18:23:58 2015
New Revision: 1682093

URL: http://svn.apache.org/r1682093
Log:
* subversion/libsvn_fs_fs/pack.c
  (copy_node_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=1682093&r1=1682092&r2=1682093&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/pack.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/pack.c Wed May 27 18:23:58 2015
@@ -715,7 +715,7 @@ copy_node_to_temp(pack_context_t *contex
   /* read & parse noderev */
   stream = svn_stream_from_aprfile2(rev_file, TRUE, pool);
   SVN_ERR(svn_fs_fs__read_noderev(&noderev, stream, pool, pool));
-  svn_stream_close(stream);
+  SVN_ERR(svn_stream_close(stream));
 
   /* create a copy of ENTRY, make it point to the copy destination and
    * store it in CONTEXT */