You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2015/10/12 13:04:03 UTC

svn commit: r1708088 - /httpd/httpd/trunk/server/request.c

Author: ylavic
Date: Mon Oct 12 11:04:02 2015
New Revision: 1708088

URL: http://svn.apache.org/viewvc?rev=1708088&view=rev
Log:
core: follow up to r1708084: we still need to take care of DONE in any case.

Modified:
    httpd/httpd/trunk/server/request.c

Modified: httpd/httpd/trunk/server/request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/request.c?rev=1708088&r1=1708087&r2=1708088&view=diff
==============================================================================
--- httpd/httpd/trunk/server/request.c (original)
+++ httpd/httpd/trunk/server/request.c Mon Oct 12 11:04:02 2015
@@ -2519,10 +2519,10 @@ AP_DECLARE(int) ap_run_sub_req(request_r
     }
     if (retval == DECLINED) {
         retval = ap_invoke_handler(r);
-        if (retval == DONE) {
-            retval = OK;
-        }
     }
+	if (retval == DONE) {
+		retval = OK;
+	}
     ap_finalize_sub_req_protocol(r);
     return retval;
 }