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 2014/02/02 22:12:38 UTC

svn commit: r1563718 - /subversion/trunk/subversion/libsvn_ra_svn/client.c

Author: rhuijben
Date: Sun Feb  2 21:12:37 2014
New Revision: 1563718

URL: http://svn.apache.org/r1563718
Log:
* subversion/libsvn_ra_svn/client.c
  (close_tunnel_cleanup): Following up on r1562425, fix a stupid typo that
    caused us to close a single stream instance twice.

Modified:
    subversion/trunk/subversion/libsvn_ra_svn/client.c

Modified: subversion/trunk/subversion/libsvn_ra_svn/client.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_svn/client.c?rev=1563718&r1=1563717&r2=1563718&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_svn/client.c (original)
+++ subversion/trunk/subversion/libsvn_ra_svn/client.c Sun Feb  2 21:12:37 2014
@@ -587,7 +587,7 @@ static apr_status_t close_tunnel_cleanup
   svn_error_clear(svn_stream_close(td->request));
 
   /* We might have one stream to use for both request and response! */
-  if (td->request != td->response);
+  if (td->request != td->response)
     svn_error_clear(svn_stream_close(td->response));
 
   return APR_SUCCESS; /* ignored */