> -----Original Message----- > From: cmpil...@apache.org [mailto:cmpil...@apache.org] > Sent: donderdag 7 februari 2013 21:30 > To: comm...@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