Fix Coverity CID 1466708 - correct pointer calculation in one case

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12894)
This commit is contained in:
Dr. David von Oheimb 2020-09-16 13:29:05 +02:00
parent ebcae87f6b
commit bde4aa8dc1

View File

@ -89,7 +89,7 @@ int OSSL_HTTP_parse_url(const char *url, char **phost, char **pport,
if (pport_num == NULL) {
p = strchr(port, '/');
if (p == NULL)
p = p + strlen(port);
p = host_end + 1 + strlen(port);
} else { /* make sure a numerical port value is given */
portnum = strtol(port, &p, 10);
if (p == port || (*p != '\0' && *p != '/'))