You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@apr.apache.org by bu...@apache.org on 2020/09/30 12:46:18 UTC

[Bug 63491] Apache HTTP Server's mod_ext_filterso not respond the body with APR 1.7.0

https://bz.apache.org/bugzilla/show_bug.cgi?id=63491

Dimitry Andric <di...@unified-streaming.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All
                 CC|                            |info@apachelounge.com,
                   |                            |steven.nairn@kewill.com,
                   |                            |ylavic.dev@gmail.com

--- Comment #1 from Dimitry Andric <di...@unified-streaming.com> ---
As far as I can see, this is because trunk r1809753 ("pipe: fix
apr_file_pipe_create_ex()'s blocking parameter forwarding") was never
backported to the apr 1.7.x branch.

Yann did backport it to the 1.6.x branch in r1809754, but maybe at that point
1.7.x did not exist yet?

In any case, the code in the 1.7.x branch as of r1865793 (the last change was
on 2019-08-23) still has:

    74  APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
    75                                                    apr_file_t **out,
    76                                                    apr_int32_t blocking,
    77                                                    apr_pool_t *p)
    78  {
    79      return apr_file_pipe_create_pools(in, out, APR_FULL_BLOCK, p, p);
    80  }

whereas the 'APR_FULL_BLOCK' parameter should be replaced by 'blocking'.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org