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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #23036|0                           |1
        is obsolete|                            |

--- Comment #2 from [email protected] ---
Created attachment 32645
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=32645&action=edit
checking return value of make_child()

make_child()'s return value is still not checked even with httpd-2.4.

This also affects all these three workers:
- event
- prefork
- worker

Looking at httpd-2.4, the return value for make_child() appears to return 0
when there is no failure.

I suggest:
    if (make_child(ap_server_conf, child_slot) >= 0) {
       --remaining_children_to_start;
    }

Instead of:
    if (make_child(ap_server_conf, child_slot) > 0) {
       --remaining_children_to_start;
    }

because in the case of a return value of 0, the remaining_children_to_start
should still be decremented.

-- 
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