On Thu, Dec 29, 2011 at 16:57, Stefan Küng <tortoisesvn_at_gmail.com> wrote:
> On 29.12.2011 16:43, Hyrum K Wright wrote:
>>
>> On Wed, Dec 28, 2011 at 1:01 AM, Stefan Küng<tortoisesvn_at_gmail.com>
>> Â wrote:
>
>
>> I looked at similar places elsewhere, and they seemed to follow a
>> pattern. Â The following patch is in a similar vein:
>>
>> [[[
>> Index: subversion/libsvn_wc/status.c
>> ===================================================================
>> --- subversion/libsvn_wc/status.c    (revision 1225565)
>> +++ subversion/libsvn_wc/status.c    (working copy)
>> @@ -1795,6 +1795,7 @@
>> Â Â struct dir_baton *pb = parent_dir_baton;
>> Â Â struct edit_baton *eb = pb->edit_baton;
>> Â Â struct file_baton *f = apr_pcalloc(pool, sizeof(*f));
>> + Â const char *dir_repos_relpath;
>>
>> Â Â /* Finish populating the baton members. */
>> Â Â f->local_abspath = svn_dirent_join(eb->anchor_abspath, path, pool);
>> @@ -1804,8 +1805,13 @@
>> Â Â f->edit_baton = eb;
>> Â Â f->ood_changed_rev = SVN_INVALID_REVNUM;
>> Â Â f->ood_changed_date = 0;
>> - Â f->repos_relpath = svn_relpath_join(find_dir_repos_relpath(pb, pool),
>> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â f->name, pool);
>> +
>> + Â dir_repos_relpath = find_dir_repos_relpath(pb, pool);
>> + Â if (dir_repos_relpath)
>> + Â Â f->repos_relpath = svn_relpath_join(dir_repos_relpath, f->name,
>> pool);
>> + Â else
>> + Â Â f->repos_relpath = apr_pstrdup(pool, f->name);
>> +
>> Â Â f->ood_kind = svn_node_file;
>> Â Â f->ood_changed_author = NULL;
>> Â Â return f;
>> ]]]
>>
>> All the tests pass, though I'm not sure if there are other correctness
>> issues here or not, so I haven't committed this.
>
>
> Just a thought:
> svn_relpath_join() joins two path/url parts. If one is an empty string, it
> still works. But it crashes when one of the parts is NULL instead of an
> empty string.
> Maybe just rewrite svn_relpath_join() so that NULL is treated as an empty
> string? My thought is that this would be what's intended in those situations
> anyway?
I think this would be the best solution: there's a comment in
svn_relpath_join() that says:
/* If either is empty return the other */
So it really is intended to work this way. Treating a NULL string as
an empty string should work best IMHO.
Stefan
--
    ___
 oo // \\   "De Chelonian Mobile"
 (_,\/ \_/ \   TortoiseSVN
  \ \_/_\_/>  The coolest Interface to (Sub)Version Control
  /_/  \_\   http://tortoisesvn.net
Received on 2012-01-02 18:36:00 CET