You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by eh...@apache.org on 2010/10/22 13:02:23 UTC

svn commit: r1026293 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: ehu
Date: Fri Oct 22 11:02:23 2010
New Revision: 1026293

URL: http://svn.apache.org/viewvc?rev=1026293&view=rev
Log:
 * subversion/libsvn_wc/wc_db.c (svn_wc__db_scan_addition): Follow-up to r1026290; don't double reset statement.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1026293&r1=1026292&r2=1026293&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Fri Oct 22 11:02:23 2010
@@ -6022,8 +6022,7 @@ svn_wc__db_scan_addition(svn_wc__db_stat
 
           if (current_abspath == local_abspath)
             /* ### maybe we should return a usage error instead?  */
-            return svn_error_createf(SVN_ERR_WC_PATH_NOT_FOUND,
-                                     svn_sqlite__reset(stmt),
+            return svn_error_createf(SVN_ERR_WC_PATH_NOT_FOUND, NULL,
                                      _("The node '%s' was not found."),
                                      svn_dirent_local_style(local_abspath,
                                                             scratch_pool));