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

Re: svn commit: r1144316 - in /subversion/trunk/subversion/libsvn_repos: commit.c fs-wrap.c

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Fri, 8 Jul 2011 20:55:16 +0300

philip_at_apache.org wrote on Fri, Jul 08, 2011 at 14:02:42 -0000:
> Author: philip
> Date: Fri Jul 8 14:02:42 2011
> New Revision: 1144316
>
> URL: http://svn.apache.org/viewvc?rev=1144316&view=rev
> Log:
> Fix issue 3953, mod_dav_svn failing to reject bogus mergeinfo on commit.
> Move server-side mergeinfo validation so that all RA layers use it.
>
...
> @@ -222,6 +255,9 @@ svn_repos_fs_change_node_prop(svn_fs_roo
> const svn_string_t *value,
> apr_pool_t *pool)
> {
> + if (value && strcmp(name, SVN_PROP_MERGEINFO) == 0)
> + SVN_ERR(verify_mergeinfo(value, path, pool));
> +
> /* Validate the property, then call the wrapped function. */
> SVN_ERR(svn_repos__validate_prop(name, value, pool));
> return svn_fs_change_node_prop(root, path, name, value, pool);
>

Shouldn't the call to verify_mergeinfo() be made by
svn_repos__validate_prop(), rather than here?

>
Received on 2011-07-08 19:56:06 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.