You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/08/06 00:32:26 UTC

svn commit: r982814 - /subversion/trunk/subversion/libsvn_ra_serf/blame.c

Author: rhuijben
Date: Thu Aug  5 22:32:26 2010
New Revision: 982814

URL: http://svn.apache.org/viewvc?rev=982814&view=rev
Log:
* subversion/libsvn_ra_serf/blame.c
  (end_blame): Don't leak error from stream closing.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/blame.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/blame.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/blame.c?rev=982814&r1=982813&r2=982814&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/blame.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/blame.c Thu Aug  5 22:32:26 2010
@@ -330,7 +330,7 @@ end_blame(svn_ra_serf__xml_parser_t *par
   else if (state == TXDELTA &&
            strcmp(name.name, "txdelta") == 0)
     {
-      svn_stream_close(info->stream);
+      SVN_ERR(svn_stream_close(info->stream));
 
       svn_ra_serf__xml_pop_state(parser);
     }