(net_http.c) Move back to strcpy

This commit is contained in:
twinaphex 2015-01-24 02:00:06 +01:00
parent f3044b8748
commit d02b6ddd69

View File

@ -181,7 +181,7 @@ http_t *net_http_new(const char * url)
http_t *state = NULL; http_t *state = NULL;
char *urlcopy =(char*)malloc(strlen(url)+1); char *urlcopy =(char*)malloc(strlen(url)+1);
strlcpy(urlcopy, url, sizeof(urlcopy)); strcpy(urlcopy, url);
if (!net_http_parse_url(urlcopy, &domain, &port, &location)) if (!net_http_parse_url(urlcopy, &domain, &port, &location))
goto fail; goto fail;