You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2009/07/07 12:09:36 UTC

Re: svn commit: r37729 - trunk/subversion/libsvn_wc

On Thu, May 14, 2009 at 20:38, Hyrum K. Wright<hy...@hyrumwright.org> wrote:
>...
> @@ -4688,11 +4695,11 @@ close_edit(void *edit_baton,
>            hi = apr_hash_next(hi))
>         {
>           const void *key;
> -          const char *deleted_path;
> +          const char *deleted_abspath;
>
>           apr_hash_this(hi, &key, NULL, NULL);
> -          deleted_path = key;
> -          apr_hash_set(eb->skipped_trees, deleted_path,
> +          SVN_ERR(svn_dirent_get_absolute(&deleted_abspath, key, eb->pool));
> +          apr_hash_set(eb->skipped_trees, deleted_abspath,
>                        APR_HASH_KEY_STRING, NULL);

Why isn't this just a called to remember_skipped_tree() ?

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2368791