X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_params.c;h=65504ac660155e6d40da74c98d8e7b0d4b15b7cc;hp=1757ec9fc5f68dc0d62cf6712b4bbd5cc62c742c;hb=d7f91cdeb926694858b07d77e29e10d5617112b1;hpb=beb3af0516cb26bcc6e9c77876b333dcec51c44f diff --git a/php_http_params.c b/php_http_params.c index 1757ec9..65504ac 100644 --- a/php_http_params.c +++ b/php_http_params.c @@ -570,7 +570,7 @@ static void push_param(HashTable *params, php_http_params_state_t *state, const } static inline zend_bool check_str(const char *chk_str, size_t chk_len, const char *sep_str, size_t sep_len) { - return 0 < sep_len && chk_len >= sep_len && !memcmp(chk_str, sep_str, sep_len); + return 0 < sep_len && chk_len >= sep_len && *chk_str == *sep_str && !memcmp(chk_str + 1, sep_str + 1, sep_len - 1); } static size_t check_sep(php_http_params_state_t *state, php_http_params_token_t **separators)