You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Kamesh Jayachandran <ka...@collab.net> on 2006/11/21 11:29:07 UTC

[PATCH][merge-tracking]ra_dav mergeinfo accumulation over 'stringbuf' rather than a 'char *'

Hi All,
Find the attached patch and log.

With regards
Kamesh Jayachandran

Re: [PATCH][merge-tracking]ra_dav mergeinfo accumulation over 'stringbuf' rather than a 'char *'

Posted by Daniel Rall <dl...@collab.net>.
On Tue, 21 Nov 2006, Kamesh Jayachandran wrote:

> Accumulate the mergeinfo with stringbuf rather than char*.
> 
> * subversion/libsvn_ra_dav/mergeinfo.c
>   (struct mergeinfo_baton): 
>    Change type of 'curr_info' from 'const char*' to 'svn_stringbuf_t'.
>   (start_element):
>    set 'curr_info' empty.
>   (end_element):
>    Fix for 'curr_info' type change.
>   (cdata_handler):
>    Fix for 'curr_info' type change.
>   (svn_ra_dav__get_merge_info):
>    We already initialize 'struct mergeinfo_baton' 's members to NULL.
>    No need to do it once more.
>    Initialize 'struct mergeinfo_baton' 's curr_info with empty buffer.

Great patch submission, Kamesh.  Committed to the branch in r22376.