Author: breser
Date: Thu Mar 28 22:37:58 2013
New Revision: 1462332

URL: http://svn.apache.org/r1462332
Log:
Backport r1459599 onto 1.7.x:

* r1459599
   Bail out of earlier in case of error with limit data.
   Votes:
     +1: breser, philip, pburba


Modified:
    subversion/branches/1.7.x/   (props changed)
    subversion/branches/1.7.x/subversion/mod_dav_svn/reports/log.c

Propchange: subversion/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1459599

Modified: subversion/branches/1.7.x/subversion/mod_dav_svn/reports/log.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/1.7.x/subversion/mod_dav_svn/reports/log.c?rev=1462332&r1=1462331&r2=1462332&view=diff
==============================================================================
--- subversion/branches/1.7.x/subversion/mod_dav_svn/reports/log.c (original)
+++ subversion/branches/1.7.x/subversion/mod_dav_svn/reports/log.c Thu Mar 28 
22:37:58 2013
@@ -341,10 +341,9 @@ dav_svn__log_report(const dav_resource *
                                   dav_xml_get_cdata(child, resource->pool, 1));
           if (serr)
             {
-              derr = dav_svn__convert_err(serr, HTTP_BAD_REQUEST,
+              return dav_svn__convert_err(serr, HTTP_BAD_REQUEST,
                                           "Malformed CDATA in element "
                                           "\"limit\"", resource->pool);
-              goto cleanup;
             }
         }
       else if (strcmp(child->name, "discover-changed-paths") == 0)


Reply via email to