On Fri, Jul 3, 2009 at 23:29, Hyrum K. Wright<hyrum_at_hyrumwright.org> wrote:
>...
> +++ trunk/subversion/libsvn_client/mergeinfo.c  Fri Jul  3 14:29:24 2009     (r38329)
>...
> + Â SVN_ERR_ASSERT(svn_dirent_is_absolute(local_abspath));
This is good to keep doing this. Since the expectation is (now)
different for the path, then this will ensure all callers don't mess
up.
>...
> Â Â Â if (ctx->notify_func2)
> Â Â Â Â {
> Â Â Â Â Â svn_wc_notify_t *notify =
> Â Â Â Â Â Â Â Â svn_wc_create_notify(
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_dirent_join_many(pool, path, path_suffix),
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_wc_notify_merge_record_info, pool);
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_dirent_join_many(scratch_pool, local_abspath,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â path_suffix),
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_wc_notify_merge_record_info, scratch_pool);
I realize this isn't your bug, that call to join_many has no
terminating NULL. Very buggy.
Is path_suffix NULL or something? If it is always non-NULL, then just
use svn_dirent_join(). If it *can* be NULL, then use some kind of
conditional here. If it is always NULL, then toss the darned thing
altogether.
>...
Cheers,
-g
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2368160
Received on 2009-07-05 19:05:54 CEST