PR :54254
Submitted by: Jackie Zhang <jackie qq zhang gmail com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1425777 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mpm_event: Check that AsyncRequestWorkerFactor is not negative. PR 54254.
+ [Jackie Zhang <jackie qq zhang gmail com>]
+
*) httxt2dbm: Correct length computation for the 'value' stored in the DBM file
PR 47650 [jon buckybox com]
if (*endptr)
return "error parsing value";
+ if (val <= 0)
+ return "AsyncRequestWorkerFactor argument must be a positive number";
+
worker_factor = val * WORKER_FACTOR_SCALE;
if (worker_factor == 0)
worker_factor = 1;