On Fri, May 13, 2016 at 7:25 PM, Yann Ylavic <[email protected]> wrote: > + if (r->the_request) { > + access_status = r->status; > + r->status = HTTP_OK; > + ap_update_child_status(conn->sbh, SERVER_BUSY_WRITE, r); > + ap_die(access_status, r); > + r = NULL; > + }
With an "else" here instead of r = NULL above... > + ap_update_child_status(conn->sbh, SERVER_BUSY_LOG, r); ... so to not segfault below :) > ap_run_log_transaction(r);
