On 5/20/20 4:20 PM, Steffen Land wrote:
> 
> Running production. Get crashes, mostly few times a day:
> 
> Error log:
> [mpm_winnt:notice] [pid 11936:tid 744] AH00428: Parent: child process 4980 
> exited with status 3221225477 -- Restarting
> 
> The thread tried to read from or write to a virtual address for which it does 
> not have the appropriate access.

Thanks for the details. Does the following patch make them go away?

Index: server/scoreboard.c
===================================================================
--- server/scoreboard.c (revision 1877790)
+++ server/scoreboard.c (working copy)
@@ -381,7 +381,7 @@
     if (pfn_ap_logio_get_last_bytes != NULL) {
         bytes = pfn_ap_logio_get_last_bytes(r->connection);
     }
-    else if (r->method_number == M_GET && r->method[0] == 'H') {
+    else if (r->method_number == M_GET && r->method && r->method[0] == 'H') {
         bytes = 0;
     }
     else {


Regards

RĂ¼diger

Reply via email to