On Wed, May 20, 2020 at 4:44 PM Ruediger Pluem <rpl...@apache.org> wrote:
>
> > +    return (!r->header_only
> > +            && (r->kept_body
> > +                || apr_table_get(r->headers_in, "Transfer-Encoding")
> > +                || ((cls = apr_table_get(r->headers_in, "Content-Length"))
> > +                    && ap_parse_strict_length(&cl, cls) && cl > 0)));
>
> Are we sure that cls is not NULL here? ap_parse_strict_length is not NULL 
> safe :-)

Hmm, I suppose that if cls is NULL the next "&& ap_parse.." is not evaluated :)

Regards;
Yann.

Reply via email to