worker MPM stack corruption in parent:
int free_slots[MAX_SPAWN_RATE];
...
/* great! we prefer these, because the new process can
* start more threads sooner. So prioritize this slot
* by putting it ahead of any slots with active threads.
*
* first, make room by moving a slot that's potentially
still
* in use to the end of the array
*/
NEW CODE-> ap_assert(free_length < MAX_SPAWN_RATE);
free_slots[free_length] =
free_slots[totally_free_length];
[Tue Jan 27 12:20:19 2004] [crit] [Tue Jan 27 12:20:19 2004] file
worker.c, line 1590, assertion "free_length < MAX_SPAWN_RATE" failed
|