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

Re: svn commit: r32535 - trunk/subversion/libsvn_subr

From: Greg Stein <gstein_at_gmail.com>
Date: Tue, 19 Aug 2008 02:14:58 -0700

Woah. Yeah... drastically wrong log msg. Hrm... :-(

(fixing...)

On Tue, Aug 19, 2008 at 2:10 AM, Daniel Shahaf <d.s_at_daniel.shahaf.name> wrote:
> gstein_at_tigris.org wrote on Tue, 19 Aug 2008 at 01:12 -0700:
>> Author: gstein
>> Date: Tue Aug 19 01:12:41 2008
>> New Revision: 32535
>>
>> Log:
>> Simplify computation digest length.
>>
>> * subversion/libsvn_util
>> (libsvn_uril): add more failure detection checks.
>
> No such file 'subversion/libsvn_util', no such symbol 'libsvn_uril', and I
> don't see any more checks added.
>
> Wrong log message?
>
>>
>> Modified:
>> trunk/subversion/libsvn_subr/checksum.c
>>
>> Modified: trunk/subversion/libsvn_subr/checksum.c
>> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_subr/checksum.c?pathrev=32535&r1=32534&r2=32535
>> ==============================================================================
>> --- trunk/subversion/libsvn_subr/checksum.c Mon Aug 18 23:51:19 2008 (r32534)
>> +++ trunk/subversion/libsvn_subr/checksum.c Tue Aug 19 01:12:41 2008 (r32535)
>> @@ -138,7 +138,7 @@ svn_checksum_parse_hex(svn_checksum_t **
>> SVN_ERR(validate_kind(kind));
>>
>> *checksum = svn_checksum_create(kind, pool);
>> - len = DIGESTSIZE((*checksum)->kind);
>> + len = DIGESTSIZE(kind);
>>
>> for (i = 0; i < len; i++)
>> {
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: dev-help_at_subversion.tigris.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-08-19 11:15:15 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.