[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

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

From: Greg Stein <gstein_at_gmail.com>
Date: Tue, 7 Jul 2009 14:09:36 +0200

On Thu, May 14, 2009 at 20:38, Hyrum K. Wright<hyrum_at_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
Received on 2009-07-07 14:09:52 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.