You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2015/09/08 14:55:16 UTC

svn commit: r1701797 - /subversion/trunk/subversion/libsvn_subr/stream.c

Author: kotkov
Date: Tue Sep  8 12:55:16 2015
New Revision: 1701797

URL: http://svn.apache.org/r1701797
Log:
Following up on r1701792, remove a misplaced svn_error_trace() call.

* subversion/libsvn_subr/stream.c
  (svn_stream_from_aprfile2): Don't call svn_error_trace() on a function
   that returns a svn_stream_t object.

Modified:
    subversion/trunk/subversion/libsvn_subr/stream.c

Modified: subversion/trunk/subversion/libsvn_subr/stream.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/stream.c?rev=1701797&r1=1701796&r2=1701797&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/stream.c (original)
+++ subversion/trunk/subversion/libsvn_subr/stream.c Tue Sep  8 12:55:16 2015
@@ -1097,7 +1097,7 @@ svn_stream_from_aprfile2(apr_file_t *fil
                          svn_boolean_t disown,
                          apr_pool_t *pool)
 {
-  return svn_error_trace(make_stream_from_apr_file(file, disown, TRUE, pool));
+  return make_stream_from_apr_file(file, disown, TRUE, pool);
 }
 
 apr_file_t *