"Bert Huijben" <b...@qqmail.nl> writes:

>> -    SVN_ERR(read_non_packed_revprop(proplist_p, fs, rev, generation,
>> -                                    pool));
>> +    {
>> +      svn_error_t *err = read_non_packed_revprop(proplist_p, fs, rev,
>> +                                                 generation, pool);
>> +      if (err)
>> +        {
>> +          if (!APR_STATUS_IS_ENOENT(err->apr_err)
>> +              || ffd->format < SVN_FS_FS__MIN_PACKED_REVPROP_FORMAT)
>> +            return svn_error_trace(err);
>> +
>> +          svn_error_clear(err);
>
> Are the output arguments of read_no_packed_revprop guaranteed (or unused) 
> after this error clear + fall through?

*proplist_p is explicitly set to NULL before the call.

-- 
Certified & Supported Apache Subversion Downloads:
http://www.wandisco.com/subversion/download

Reply via email to