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

Re: r16754

From: David James <james82_at_gmail.com>
Date: 2005-10-17 15:04:24 CEST

Hi Peter,

Thanks for your detailed comments!

On 10/17/05, Peter N. Lundblad <peter@famlundblad.se> wrote:
> > +svn_client_proplist_item_t *
> > +svn_client_proplist_item_dup (const svn_client_proplist_item_t *item,
> > + apr_pool_t * pool)
> > +{
> > + svn_client_proplist_item_t *new_item
> > + = apr_pcalloc (pool, sizeof (*new_item));
> > +
> > + if (item->node_name)
> > + new_item->node_name = svn_stringbuf_dup (item->node_name, pool);
> > +
> > + if (item->prop_hash)
> > + new_item->prop_hash = svn_string_hash_dup (item->prop_hash, pool);
> > +
> > + return new_item;
> > +}
> > +
>
> This doesn't belong in libsvn_subr.
Would libsvn_client/constructors.c be a reasonable location for the
svn_client_* methods and their helper functions?

Cheers,

David

--
David James -- http://www.cs.toronto.edu/~james
Received on Mon Oct 17 15:05:33 2005

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.