the second one is true either. If the second one is false the first one is
false as well.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1161578 13f79535-47bb-0310-9956-
ffa450edef68
/* we know that no bucket has undefined length (-1) */
AP_DEBUG_ASSERT(e->length != (apr_size_t)(-1));
elen64 = (apr_uint64_t)e->length;
- if (!first && (elen64 > start64 || elen64 + pos > start64)) {
+ if (!first && (elen64 + pos > start64)) {
first = e;
off_first = pos;
}
- if (!last && (elen64 >= end64 || elen64 + pos >= end64)) {
+ if (!last && (elen64 + pos >= end64)) {
last = e;
off_last = pos;
break;