On Thu, Jun 23, 2011 at 17:20, <rhuij...@apache.org> wrote: >... > +++ subversion/trunk/subversion/libsvn_wc/wc_db.c Thu Jun 23 21:20:49 2011 > @@ -6068,16 +6068,15 @@ op_delete_txn(void *baton, > SVN_ERR(svn_sqlite__step(&have_row, stmt)); > if (have_row) > { > - const char *absent_path > - = svn_dirent_local_style(svn_sqlite__column_text(stmt, 0, > scratch_pool), > - scratch_pool); > + const char *absent_path = svn_sqlite__column_text(stmt, 0, > scratch_pool);
You can pass NULL rather than scratch_pool since the value will immediately be joined with the wcroot's path. >... Cheers, -g