X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_functions.c;h=631de1456cdfd75c7502f4b3f0f573befb58da9a;hp=2f8d679036c63446b74cd4bad423803ce5470a96;hb=39feb7a7e30bb4b393a6f76aa2f35d4e9275523e;hpb=b63e146a77c6512cae1574c0bb520b3a7bbec1e7 diff --git a/http_functions.c b/http_functions.c index 2f8d679..631de14 100644 --- a/http_functions.c +++ b/http_functions.c @@ -1254,7 +1254,7 @@ PHP_FUNCTION(http_put_stream) PHP_FUNCTION(http_request_method_register) { char *method; - int *method_len; + int method_len; unsigned long existing; if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &method, &method_len)) { @@ -1264,7 +1264,7 @@ PHP_FUNCTION(http_request_method_register) RETURN_LONG((long) existing); } - RETVAL_LONG((long) http_request_method_register(method)); + RETVAL_LONG((long) http_request_method_register(method, method_len)); } /* }}} */