Author: gstein
Date: Sat May 5 21:14:19 2012
New Revision: 1334507
URL: http://svn.apache.org/viewvc?rev=1334507&view=rev
Log:
Contrary to the comment, the xml parsing code won't blow up.
* subversion/libsvn_ra_serf/replay.c:
(svn_ra_serf__replay_range): remove status code stuff
Modified:
subversion/trunk/subversion/libsvn_ra_serf/replay.c
Modified: subversion/trunk/subversion/libsvn_ra_serf/replay.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/replay.c?rev=1334507&r1=1334506&r2=1334507&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/replay.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/replay.c Sat May 5 21:14:19 2012
@@ -747,10 +747,6 @@ svn_ra_serf__replay_range(svn_ra_session
svn_ra_serf__list_t *done_list;
svn_ra_serf__list_t *done_reports = NULL;
replay_context_t *replay_ctx;
- /* We're not really interested in the status code here in replay, but
- the XML parsing code will abort on error if it doesn't have a place
- to store the response status code. */
- int status_code;
if (session->cancel_func)
SVN_ERR(session->cancel_func(session->cancel_baton));
@@ -823,7 +819,6 @@ svn_ra_serf__replay_range(svn_ra_session
parser_ctx->start = start_replay;
parser_ctx->end = end_replay;
parser_ctx->cdata = cdata_replay;
- parser_ctx->status_code = &status_code;
parser_ctx->done = &replay_ctx->done;
parser_ctx->done_list = &done_reports;
parser_ctx->done_item = &replay_ctx->done_item;