fix lint warning

git-svn-id: https://unbound.nlnetlabs.nl/svn/trunk@4513 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
wouter 2018-02-06 11:16:23 +00:00
parent 1e7120e420
commit 081cdce096

View File

@ -5438,7 +5438,7 @@ parse_url(char* url, char** host, char** file, int* port, int* ssl)
char* end = strchr(p, ']');
p++; /* skip over [ */
if(end) {
*host = dup_prefix(p, (end-p));
*host = dup_prefix(p, (size_t)(end-p));
if(!*host) return 0;
p = end+1; /* skip over ] */
} else {
@ -5449,7 +5449,7 @@ parse_url(char* url, char** host, char** file, int* port, int* ssl)
} else {
char* end = str_find_first_of_chars(p, ':', '/');
if(end) {
*host = dup_prefix(p, (end-p));
*host = dup_prefix(p, (size_t)(end-p));
if(!*host) return 0;
} else {
*host = dup_all(p);