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

Re: svn commit: r1104309 - in /subversion/trunk/subversion: libsvn_repos/reporter.c tests/cmdline/lock_tests.py tests/cmdline/update_tests.py

From: Johan Corveleyn <jcorvel_at_gmail.com>
Date: Wed, 18 May 2011 08:28:10 +0200

On Tue, May 17, 2011 at 7:13 PM, C. Michael Pilato <cmpilato_at_collab.net> wrote:
> On 05/17/2011 06:34 PM, Johan Corveleyn wrote:
>> On Tue, May 17, 2011 at 5:02 PM,  <cmpilato_at_apache.org> wrote:
>>> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/reporter.c?rev=1104309&r1=1104308&r2=1104309&view=diff
>>> ==============================================================================
>>> --- subversion/trunk/subversion/libsvn_repos/reporter.c (original)
>>> +++ subversion/trunk/subversion/libsvn_repos/reporter.c Tue May 17 15:02:05 2011
>>> @@ -860,9 +860,23 @@ update_entry(report_baton_t *b, svn_revn
>>>     {
>>>       int distance = svn_fs_compare_ids(s_entry->id, t_entry->id);
>>>       if (distance == 0 && !any_path_info(b, e_path)
>>> -          && (!info || (!info->start_empty && !info->lock_token))
>>>           && (requested_depth <= wc_depth || t_entry->kind == svn_node_file))
>>> -        return SVN_NO_ERROR;
>>> +        {
>>> +          if (!info)
>>> +            return SVN_NO_ERROR;
>>> +
>>> +          if (!info->start_empty)
>>> +            {
>>> +              svn_lock_t *lock;
>>> +
>>> +              if (!info->lock_token)
>>> +                return SVN_NO_ERROR;
>>> +
>>> +              SVN_ERR(svn_fs_get_lock(&lock, b->repos->fs, t_path, pool));
>>
>> Could t_path be NULL here (if only if a "malicious client" crafts a
>> special request)?
>>
>> The docstring of this function mentions that T_ENTRY and T_PATH may be
>> NULL. In this block we are sure that T_ENTRY is non-null, but what
>> about T_PATH?
>
> I think T_ENTRY and T_PATH come as a pair, either both NULL or both not.

Yes, it would seem so. And I've followed the callers of update_entry a
bit to assure myself that T_PATH can't be NULL (or if it would be,
earlier code would already have failed). Just making sure :-).

Thanks for fixing this issue.

-- 
Johan
Received on 2011-05-18 08:29:03 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.