From c569aa93a6c0981e92227a795fec4e8d102027f6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 19 Sep 2015 13:13:31 +0200 Subject: [PATCH] One buildfix begets another buildfix --- libretro-common/net/net_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/net/net_http.c b/libretro-common/net/net_http.c index 027b1e88a2..ce3482b2ab 100644 --- a/libretro-common/net/net_http.c +++ b/libretro-common/net/net_http.c @@ -177,7 +177,7 @@ struct http_connection_t *net_http_connection_new(const char *url) if (!conn->urlcopy) goto error; - strlcpy(conn->urlcopy, url, length)); + strlcpy(conn->urlcopy, url, length); if (strncmp(url, "http://", strlen("http://")) != 0) goto error;