Merge tag 'v2025.01-rc4' into next

Prepare v2025.01-rc4
This commit is contained in:
Tom Rini
2024-12-09 16:29:47 -06:00
143 changed files with 1166 additions and 3474 deletions

View File

@@ -180,7 +180,7 @@ static int parse_legacy_arg(char *arg, char *nurl, size_t rem)
if (rem < n)
return -1;
strlcpy(p, server, n);
strncpy(p, server, n);
p += n;
rem -= n;
if (rem < 1)
@@ -191,7 +191,7 @@ static int parse_legacy_arg(char *arg, char *nurl, size_t rem)
n = strlen(path);
if (rem < n)
return -1;
strlcpy(p, path, n);
strncpy(p, path, n);
p += n;
rem -= n;
if (rem < 1)