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

RE: svn commit: r1241440 - /subversion/branches/moves-scan-log/subversion/libsvn_wc/util.c

From: Bert Huijben <bert_at_qqmail.nl>
Date: Tue, 7 Feb 2012 13:42:06 +0100

> -----Original Message-----
> From: stsp_at_apache.org [mailto:stsp_at_apache.org]
> Sent: dinsdag 7 februari 2012 13:24
> To: commits_at_subversion.apache.org
> Subject: svn commit: r1241440 - /subversion/branches/moves-scan-
> log/subversion/libsvn_wc/util.c
>
> Author: stsp
> Date: Tue Feb 7 12:23:50 2012
> New Revision: 1241440
>
> URL: http://svn.apache.org/viewvc?rev=1241440&view=rev
> Log:
> On the moves-scan-log branch, fix svn_wc__conflict_description2_dup().
>
> * subversion/libsvn_wc/util.c
> (svn_wc__conflict_description2_dup): Copy the new 'suggested_moves'
> element, too.
>
> Modified:
> subversion/branches/moves-scan-log/subversion/libsvn_wc/util.c
>
> Modified: subversion/branches/moves-scan-log/subversion/libsvn_wc/util.c
> URL: http://svn.apache.org/viewvc/subversion/branches/moves-scan-
> log/subversion/libsvn_wc/util.c?rev=1241440&r1=1241439&r2=1241440&vie
> w=diff
> ==========================================================
> ====================
> --- subversion/branches/moves-scan-log/subversion/libsvn_wc/util.c
> (original)
> +++ subversion/branches/moves-scan-log/subversion/libsvn_wc/util.c Tue
> Feb 7 12:23:50 2012
> @@ -283,6 +283,9 @@ svn_wc__conflict_description2_dup(const
> if (conflict->src_right_version)
> new_conflict->src_right_version =
> svn_wc_conflict_version_dup(conflict->src_right_version, pool);
> + if (conflict->suggested_moves)
> + new_conflict->suggested_moves = apr_array_copy(pool,
> + conflict->suggested_moves);

Does this also copy the values of the array?

        Bert
>
> return new_conflict;
> }
>
Received on 2012-02-07 13:42:57 CET

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.