Here is example of simple CGI script: ---cut--- #!/usr/bin/perl 1 for 1..10000000; print "Content-type: text/html\r\n\r\nqweqwe"; ---cut--- Apache's chield process will crash if I request this CGI using https:// simultaneously a number of times. To do this I use Opera browser (Apache installed on same computer) to request url like https://my.local.host/test.cgi and then press Ctrl-R (Reload) a number of times (about 6-8). This will result in about 4-5 crashes per 6 requests. From error.log: ---cut--- [Sat May 01 00:00:46 2004] [notice] child pid 13755 exit signal Segmentation fault (11) [Sat May 01 00:00:46 2004] [notice] child pid 13756 exit signal Segmentation fault (11) [Sat May 01 00:00:46 2004] [notice] child pid 17016 exit signal Segmentation fault (11) ---cut--- I've found some patch which fixed this issue. Here is url: http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/ssl/ssl_engine_io.c?r1=1.121&r2=1.122 Reproducible: Always Steps to Reproduce: 1. 2. 3.
Patch has been added to -r1.