On Tue, May 3, 2011 at 19:12, <rhuij...@apache.org> wrote: >... > +++ subversion/trunk/subversion/libsvn_client/delete.c Tue May 3 23:12:48 > 2011 >... > @@ -245,16 +233,19 @@ delete_urls(const apr_array_header_t *pa > /* Call the path-based editor driver. */ > err = svn_delta_path_driver(editor, edit_baton, SVN_INVALID_REVNUM, > targets, path_driver_cb_func, > - (void *)editor, pool); > + (void *)editor, iterpool); > + > + svn_pool_destroy(iterpool); > if (err) > { > return svn_error_return( > svn_error_compose_create(err, > - editor->abort_edit(edit_baton, > pool))); > + editor->abort_edit(edit_baton, > + iterpool)));
You can't use iterpool here; it was destroyed above. >... Cheers, -g