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

RE: svn commit: r1443705 - /subversion/trunk/subversion/libsvn_ra_serf/commit.c

From: Bert Huijben <bert_at_qqmail.nl>
Date: Thu, 7 Feb 2013 23:23:54 +0100

> -----Original Message-----
> From: cmpilato_at_apache.org [mailto:cmpilato_at_apache.org]
> Sent: donderdag 7 februari 2013 21:30
> To: commits_at_subversion.apache.org
> Subject: svn commit: r1443705 -
> /subversion/trunk/subversion/libsvn_ra_serf/commit.c
>
> Author: cmpilato
> Date: Thu Feb 7 20:30:01 2013
> New Revision: 1443705
>
> URL: http://svn.apache.org/r1443705
> Log:
> Followup to r1443578, hopefully fixing some segfaults triggered on
> certain buildbots.
>
> * subversion/libsvn_ra_serf/commit.c
> (checkout_node): Canonicalize the parsed Location header URI as a urlpath.
>
> Modified:
> subversion/trunk/subversion/libsvn_ra_serf/commit.c
>
> Modified: subversion/trunk/subversion/libsvn_ra_serf/commit.c
> URL:
> http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/
> commit.c?rev=1443705&r1=1443704&r2=1443705&view=diff
> ==========================================================
> ====================
> --- subversion/trunk/subversion/libsvn_ra_serf/commit.c (original)
> +++ subversion/trunk/subversion/libsvn_ra_serf/commit.c Thu Feb 7
> 20:30:01 2013
> @@ -326,8 +326,8 @@ checkout_node(const char **working_url,
> if (status)
> return svn_error_create(SVN_ERR_RA_DAV_MALFORMED_DATA, NULL,
> _("Error parsing Location header value"));
> -
> - *working_url = apr_pstrdup(result_pool, uri.path);
> +
> + *working_url = svn_urlpath__canonicalize(uri.path, result_pool);

Could this be caused by the difference between redirecting to /some/subdir and http://server/some/subdir ?

The Windows buildbot uses the configuration written by win-tests.py; I'm not sure which httpd configuration the centos buildbot uses.

        Bert
Received on 2013-02-07 23:24:35 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.