Skip to content
Snippets Groups Projects
Commit 400055bf authored by Steve Holme's avatar Steve Holme Committed by Daniel Stenberg
Browse files

smtp_connect: use defined buffer length for hostname

parent 5801ddb8
No related branches found
No related tags found
No related merge requests found
......@@ -1100,7 +1100,7 @@ static CURLcode smtp_connect(struct connectdata *conn,
struct pingpong *pp = &smtpc->pp;
const char *path = conn->data->state.path;
int len;
char localhost[1024 + 1];
char localhost[HOSTNAME_MAX + 1];
*done = FALSE; /* default to not done yet */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment