View | Details | Raw Unified | Return to bug 46412
Collapse All | Expand All

(-)server/mpm/event/event.c (-2 / +3 lines)
Lines 2698-2705 Link Here
2698
                    /* we're still doing a 1-for-1 replacement of dead
2698
                    /* we're still doing a 1-for-1 replacement of dead
2699
                     * children with new children
2699
                     * children with new children
2700
                     */
2700
                     */
2701
                    make_child(ap_server_conf, child_slot);
2701
                    if (make_child(ap_server_conf, child_slot) >= 0) {
2702
                    --remaining_children_to_start;
2702
                        --remaining_children_to_start;
2703
                    }
2703
                }
2704
                }
2704
            }
2705
            }
2705
            else if (ap_unregister_extra_mpm_process(pid.pid, &old_gen) == 1) {
2706
            else if (ap_unregister_extra_mpm_process(pid.pid, &old_gen) == 1) {
(-)server/mpm/prefork/prefork.c (-2 / +3 lines)
Lines 1048-1055 Link Here
1048
                    /* we're still doing a 1-for-1 replacement of dead
1048
                    /* we're still doing a 1-for-1 replacement of dead
1049
                     * children with new children
1049
                     * children with new children
1050
                     */
1050
                     */
1051
                    make_child(ap_server_conf, child_slot);
1051
                    if (make_child(ap_server_conf, child_slot) >= 0) {
1052
                    --remaining_children_to_start;
1052
                        --remaining_children_to_start;
1053
                    }
1053
                }
1054
                }
1054
#if APR_HAS_OTHER_CHILD
1055
#if APR_HAS_OTHER_CHILD
1055
            }
1056
            }
(-)server/mpm/worker/worker.c (-2 / +3 lines)
Lines 1709-1716 Link Here
1709
                    /* we're still doing a 1-for-1 replacement of dead
1709
                    /* we're still doing a 1-for-1 replacement of dead
1710
                     * children with new children
1710
                     * children with new children
1711
                     */
1711
                     */
1712
                    make_child(ap_server_conf, child_slot);
1712
                    if (make_child(ap_server_conf, child_slot) >= 0) {
1713
                    --remaining_children_to_start;
1713
                        --remaining_children_to_start;
1714
                    }
1714
                }
1715
                }
1715
            }
1716
            }
1716
            else if (ap_unregister_extra_mpm_process(pid.pid, &old_gen) == 1) {
1717
            else if (ap_unregister_extra_mpm_process(pid.pid, &old_gen) == 1) {

Return to bug 46412