On Thu, Jul 2, 2009 at 17:33, Hyrum K. Wright<hyrum_at_hyrumwright.org> wrote:
>...
> +++ trunk/subversion/libsvn_wc/props.c  Thu Jul  2 08:33:34 2009     (r38306)
>...
> @@ -2076,40 +2074,48 @@ svn_wc_prop_set3(const char *name,
> Â if (value && svn_prop_is_svn_prop(name))
> Â Â {
> Â Â Â const svn_string_t *new_value;
> - Â Â Â struct getter_baton *gb = apr_pcalloc(pool, sizeof(*gb));
> + Â Â Â struct getter_baton *gb = apr_pcalloc(scratch_pool, sizeof(*gb));
>
> - Â Â Â SVN_ERR(svn_dirent_get_absolute(&gb->local_abspath, path, pool));
> - Â Â Â gb->db = svn_wc__adm_get_db(adm_access);
> + Â Â Â gb->local_abspath = local_abspath;
> + Â Â Â gb->db = wc_ctx->db;
I know you're just tweaking, but this baton can/should just go onto
the stack rather than the heap.
>...
> Â if (notify_func)
> Â Â {
> - Â Â Â svn_wc_notify_t *notify = svn_wc_create_notify(path, notify_action, pool);
> + Â Â Â svn_wc_notify_t *notify = svn_wc_create_notify(local_abspath,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â notify_action,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â scratch_pool);
Another one of these questions about the path that you feed into the
notification system...
>...
Cheers,
-g
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2368163
Received on 2009-07-05 19:39:54 CEST