You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/05/11 14:30:28 UTC

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

Author: julianfoad
Date: Wed May 11 12:30:27 2011
New Revision: 1101857

URL: http://svn.apache.org/viewvc?rev=1101857&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (verify_wcroot): Clear the iterpool in the loop.

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=1101857&r1=1101856&r2=1101857&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed May 11 12:30:27 2011
@@ -12219,6 +12219,8 @@ verify_wcroot(svn_wc__db_wcroot_t *wcroo
       const char *local_relpath, *parent_relpath;
       apr_int64_t op_depth;
 
+      svn_pool_clear(iterpool);
+
       SVN_ERR(svn_sqlite__step(&have_row, stmt));
       if (!have_row)
         break;