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

--- Comment #5 from Yann Ylavic <[email protected]> ---
(In reply to Yann Ylavic from comment #3)
> 
> So:
>     ap_set_core_module_config(c->conn_config, NULL);
> is what sets csd to NULL in ap_lingering_close.

But before r1891721, the apr_socket_close(csd) was protected by:

AP_DECLARE(int) ap_start_lingering_close(conn_rec *c)
{
    apr_socket_t *csd = ap_get_conn_socket(c);

    if (!csd) {
        return 1;
    }
    [...]
    return 0;
}

So I think that attachment 38061 is the right thing to do, for compatibility.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to