You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2016/07/18 15:31:39 UTC

svn commit: r1753245 - /httpd/httpd/trunk/modules/http/http_protocol.c

Author: wrowe
Date: Mon Jul 18 15:31:39 2016
New Revision: 1753245

URL: http://svn.apache.org/viewvc?rev=1753245&view=rev
Log:
The method_registry is initialized in register_hooks() for mod_http

Modified:
    httpd/httpd/trunk/modules/http/http_protocol.c

Modified: httpd/httpd/trunk/modules/http/http_protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_protocol.c?rev=1753245&r1=1753244&r2=1753245&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_protocol.c (original)
+++ httpd/httpd/trunk/modules/http/http_protocol.c Mon Jul 18 15:31:39 2016
@@ -723,10 +723,6 @@ AP_DECLARE(int) ap_method_register(apr_p
 {
     int *methnum;
 
-    if (methods_registry == NULL) {
-        ap_method_registry_init(p);
-    }
-
     if (methname == NULL) {
         return M_INVALID;
     }