37 lines
978 B
Diff
37 lines
978 B
Diff
From 9c673083cd46ee2a954a62156acbe4b6e657c048 Mon Sep 17 00:00:00 2001
|
|
From: Stanislav Malyshev <stas@php.net>
|
|
Date: Wed, 27 Jan 2021 00:13:43 -0800
|
|
Subject: [PATCH] Rm unneeded function
|
|
|
|
---
|
|
ext/standard/url.c | 16 ----------------
|
|
1 file changed, 16 deletions(-)
|
|
|
|
diff --git a/ext/standard/url.c b/ext/standard/url.c
|
|
index 9743a00166b1..0b3d97a76691 100644
|
|
--- a/ext/standard/url.c
|
|
+++ b/ext/standard/url.c
|
|
@@ -102,22 +102,6 @@ static const char *binary_strcspn(const char *s, const char *e
|
|
return e;
|
|
}
|
|
|
|
-static int is_userinfo_valid(const char *str, size_t len)
|
|
-{
|
|
- const char *valid = "-._~!$&'()*+,;=:";
|
|
- const char *p = str;
|
|
- while (p - str < len) {
|
|
- if (isalpha(*p) || isdigit(*p) || strchr(valid, *p)) {
|
|
- p++;
|
|
- } else if (*p == '%' && p - str <= len - 3 && isdigit(*(p+1)) && isxdigit(*(p+2))) {
|
|
- p += 3;
|
|
- } else {
|
|
- return 0;
|
|
- }
|
|
- }
|
|
- return 1;
|
|
-}
|
|
-
|
|
/* {{{ php_url_parse */
|
|
PHPAPI php_url *php_url_parse_ex(char const *str, size_t length)
|
|
{
|