On Wed, Mar 29, 2006 at 05:21:41PM +0100, Philip Martin wrote:
> I can reproduce the problem, so once again --enable-dso is broken on
> trunk:
>
> $ subversion/tests/libsvn_repos/repos-test --fs-type=bdb 7
> PASS: lt-repos-test 7: test authz in the commit editor
> Segmentation fault
>
Does this patch help? Looks like there's a pool misuse in the test
itself.
Index: subversion/tests/libsvn_repos/repos-test.c
===================================================================
--- subversion/tests/libsvn_repos/repos-test.c (revision 19083)
+++ subversion/tests/libsvn_repos/repos-test.c (working copy)
@@ -1494,7 +1494,7 @@
/* Open directory /A, to which we have read/write access. */
SVN_ERR(editor->open_directory("/A", root_baton,
SVN_INVALID_REVNUM,
- pool, &dir_baton));
+ subpool, &dir_baton));
/* Test denied file addition. Denied because of a conflicting rule
on the file path itself. */
Regards,
Malcolm
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Mar 29 18:34:41 2006