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

Re: svn commit: r16128 - trunk/subversion/libsvn_fs_base

From: C. Michael Pilato <cmpilato_at_collab.net>
Date: 2005-09-14 21:33:59 CEST

cmpilato@tigris.org writes:

> Author: cmpilato
> Date: Wed Sep 14 14:25:30 2005
> New Revision: 16128
>
> Modified:
> trunk/subversion/libsvn_fs_base/tree.c
>
> Log:
> Fix an auto-merge regression (though one probably never seen in
> production) I inadvertantly introduced in r15569.
>
> * subversion/libsvn_fs_base/tree.c
> (merge): Since svn_fs_base__dag_dir_entries() doesn't actually
> populate the 'kind' field of the svn_fs_dirent_t object it
> returns, revert to using svn_fs_base__dag_node_kind() to check
> path kinds.

[...]

> /* If any of the three entries is of type file, flag a conflict. */
> - if (s_entry->kind == svn_node_file
> - || t_entry->kind == svn_node_file
> - || a_entry->kind == svn_node_file)
> + if ((svn_fs_base__dag_node_kind (s_ent_node) == svn_node_file)
> + || (svn_fs_base__dag_node_kind (t_ent_node) == svn_node_file)
> + || (svn_fs_base__dag_node_kind (a_ent_node) == svn_node_file))
> return conflict_err (conflict_p,
> svn_path_join (target_path,
> a_entry->name,

In case anyone was wondering, I verified this problem by adding the
following just above the block I changed in the commit:

          if (s_entry->kind != svn_node_unknown
              || t_entry->kind != svn_node_unknown
              || a_entry->kind != svn_node_unknown)
            return svn_error_create (SVN_ERR_FS_CORRUPT, NULL,
                                     "Got something other than unknowns");

I ran the test suite, and I never saw that error fire, so I knew that
the 'kind' fields were always svn_node_unknown (and therefore checking
them against svn_node_file would not be entirely useful).

-- 
C. Michael Pilato <cmpilato@collab.net>
CollabNet   <>   www.collab.net   <>   Distributed Development On Demand
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Sep 14 21:35:25 2005

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.