Merge pull request #1779 from runcom/gcc8-fix

nsexec.c: fix GCC 8 warning
This commit is contained in:
Michael Crosby 2018-04-12 12:13:43 -04:00 committed by GitHub
commit f753f300ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -505,7 +505,8 @@ void join_namespaces(char *nslist)
ns->fd = fd; ns->fd = fd;
ns->ns = nsflag(namespace); ns->ns = nsflag(namespace);
strncpy(ns->path, path, PATH_MAX); strncpy(ns->path, path, PATH_MAX - 1);
ns->path[PATH_MAX - 1] = '\0';
} while ((namespace = strtok_r(NULL, ",", &saveptr)) != NULL); } while ((namespace = strtok_r(NULL, ",", &saveptr)) != NULL);
/* /*