apr_reslist_create() does not allow the Soft Max or the Hard Max to equal the
Minimum number of resources.
Shouldn't it be possible to create an apr_reslist where the Minimum is also
the Soft Max?
I have done minimal testing with this patch with my mod_authn_dbi (the only
apache module that i know of that uses apr_reslist) and it has worked fine.
-chip
Index: apr_reslist.c
===================================================================
RCS file: /home/cvspublic/apr-util/misc/apr_reslist.c,v
retrieving revision 1.2
diff -b -u -r1.2 apr_reslist.c
--- apr_reslist.c 1 Jan 2003 00:02:22 -0000 1.2
+++ apr_reslist.c 3 Sep 2003 18:36:40 -0000
@@ -286,7 +286,7 @@
/* Do some sanity checks so we don't thrash around in the
* maintenance routine later. */
- if (min >= smax || min >= hmax || smax > hmax || ttl < 0) {
+ if (min > smax || min > hmax || smax > hmax || ttl < 0) {
return APR_EINVAL;
}