Adjusted credentials char array size

This commit is contained in:
wiidev 2020-09-07 22:14:43 +01:00
parent 242b72add6
commit 8abd33fb28

View File

@ -258,7 +258,7 @@ bool connect_proxy(HTTP_INFO *httpinfo, char *host, char *username, char *passwo
{
HTTP_RESPONSE response = {0};
char request[500];
char credentials[65];
char credentials[66];
char *auth;
int len;
if (username && password)