f33ba3
diff --git a/server/scoreboard.c b/server/scoreboard.c
f33ba3
index f989b99..7cce507 100644
f33ba3
--- a/server/scoreboard.c
f33ba3
+++ b/server/scoreboard.c
f33ba3
@@ -370,7 +370,7 @@ AP_DECLARE(void) ap_increment_counts(ap_sb_handle_t *sb, request_rec *r)
f33ba3
     if (pfn_ap_logio_get_last_bytes != NULL) {
f33ba3
         bytes = pfn_ap_logio_get_last_bytes(r->connection);
f33ba3
     }
f33ba3
-    else if (r->method_number == M_GET && r->method[0] == 'H') {
f33ba3
+    else if (r->method_number == M_GET && r->method && r->method[0] == 'H') {
f33ba3
         bytes = 0;
f33ba3
     }
f33ba3
     else {