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

RE: svn commit: r1501207 - /subversion/trunk/subversion/libsvn_ra_serf/util.c

From: Bert Huijben <bert_at_qqmail.nl>
Date: Sat, 13 Jul 2013 13:35:01 +0200

> -----Original Message-----
> From: Ivan Zhakov [mailto:ivan_at_visualsvn.com]
> Sent: vrijdag 12 juli 2013 15:27
> To: dev_at_subversion.apache.org; Bert Huijben
> Subject: Re: svn commit: r1501207 -
> /subversion/trunk/subversion/libsvn_ra_serf/util.c
>
> On Tue, Jul 9, 2013 at 3:57 PM, <rhuijben_at_apache.org> wrote:
> > Author: rhuijben
> > Date: Tue Jul 9 11:57:46 2013
> > New Revision: 1501207
> >
> > URL: http://svn.apache.org/r1501207
> > Log:
> > Stop ignoring xml parser errors in three places in ra_serf. These parse
> errors
> > might be caused by broken network requests, or requests that should have
> had a
> > body. In all cases ignoring the parser errors made true errors hard to
> detect.
> >
> > * subversion/libsvn_ra_serf/util.c
> > (inject_to_parser,
> > svn_ra_serf__process_pending,
> > svn_ra_serf__handle_xml_parser): Properly handle xml parser errors.
> >
> [...]
>
> > @@ -1485,14 +1487,24 @@ svn_ra_serf__process_pending(svn_ra_serf
> > if (pending_empty &&
> > parser->pending->network_eof)
> > {
> > + int xml_status;
> > SVN_ERR_ASSERT(parser->xmlp != NULL);
> >
> > - /* Tell the parser that no more content will be parsed. Ignore the
> > - return status. We just don't care. */
> > - (void) XML_Parse(parser->xmlp, NULL, 0, 1);
> > + /* Tell the parser that no more content will be parsed. */
> > + xml_status = XML_Parse(parser->xmlp, NULL, 0, 1);
> >
> > apr_pool_cleanup_run(parser->pool, &parser->xmlp,
> xml_parser_cleanup);
> > parser->xmlp = NULL;
> > +
> > + if (! parser->ignore_errors)
> > + {
> > + SVN_ERR(parser->error);
> > +
> > + if (xml_status != XML_STATUS_OK)
> > + {
> > + }
> Hi Bert,
>
> What is the purpose of this condition with empty body?

I intended to copy&paste one of the existing error blocks here, but I forgot to do that before committing.

Fixed in r1502777.

        Bert
Received on 2013-07-13 13:36:02 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.