Ignore false lint issue

This commit is contained in:
Arun Prakash Jana 2020-05-06 21:28:59 +05:30
parent 900b37c56c
commit 2a5f8433b8
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -2897,7 +2897,7 @@ static size_t mkpath(const char *dir, const char *name, char *out)
size_t len;
/* Handle absolute path */
if (name[0] == '/')
if (name[0] == '/') // NOLINT
return xstrsncpy(out, name, PATH_MAX);
/* Handle root case */