Skip to content

Commit

Permalink
fixup! OSSL_HTTP_adapt_proxy(): fix handling of escaped IPv6 host add…
Browse files Browse the repository at this point in the history
…resses and of whitespace in no_proxy
  • Loading branch information
DDvO committed Aug 28, 2024
1 parent 18428ef commit 1a26395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/http/http_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ static int use_proxy(const char *no_proxy, const char *server)
{
size_t sl;
const char *found = NULL;
char host[300];
char host[NI_MAXHOST];

if (!ossl_assert(server != NULL))
return 0;
Expand Down

0 comments on commit 1a26395

Please sign in to comment.