On Mon, Mar 8, 2010 at 16:29, <[email protected]> wrote: >... > +++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Mon Mar 8 21:29:19 2010 > @@ -807,6 +807,7 @@ > apr_pool_t *iterpool = svn_pool_create(pool); > const apr_array_header_t *children; > svn_wc__db_status_t status; > + svn_boolean_t base_shadowed;
I saw you tossed this already... >... > @@ -853,25 +856,15 @@ > iterpool); > } > > - /* Handle "this dir" for states that need it done post-recursion. */ > + /* Handle directories now, after handling their kiddos. */ > SVN_ERR(svn_wc__db_read_info(&status, NULL, NULL, NULL, NULL, NULL, NULL, > NULL, NULL, NULL, NULL, NULL, NULL, NULL, > - NULL, NULL, NULL, NULL, NULL, NULL, NULL, > NULL, > - NULL, NULL, > + NULL, NULL, NULL, NULL, NULL, NULL, NULL, > + &base_shadowed, NULL, NULL, > db, dir_abspath, iterpool, iterpool)); ... but you don't need status either. This call can be eliminated. Cheers, -g

