diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-02-07 11:54:00 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-02-09 23:39:58 +0100 |
commit | 9cb126792ce225e7c7d6ab5d1bf74f58f1844a29 (patch) | |
tree | 4de8e8588f71fc6338bcff648bda609c8593f1e4 /lib | |
parent | f260b9e9323015fd5790fc7a4c97214ceeac641b (diff) | |
download | curl-9cb126792ce225e7c7d6ab5d1bf74f58f1844a29.tar.gz |
url/idnconvert: remove scan for <= 32 ascii values
The check was added back in fa939220df before the URL parser would catch
these problems and therefore these will never trigger now.
Closes #3539
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -1748,15 +1748,6 @@ static CURLcode idnconvert_hostname(struct connectdata *conn, infof(data, "IDN support not present, can't parse Unicode domains\n"); #endif } - { - char *hostp; - for(hostp = host->name; *hostp; hostp++) { - if(*hostp <= 32) { - failf(data, "Host name '%s' contains bad letter", host->name); - return CURLE_URL_MALFORMAT; - } - } - } return CURLE_OK; } |