mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 13:13:34 +01:00
Static Code Analysis : Add check on the return of strtok inside mkfulldir_internal to avoid warning.
This commit is contained in:
parent
f3625a080f
commit
5c1db9d0e1
@ -73,15 +73,18 @@ mkfulldir_internal (char *path)
|
||||
trail[0] = tokpath[0];
|
||||
trail[1] = tokpath[1];
|
||||
trail[2] = '\0';
|
||||
strcat (trail, token);
|
||||
strcat (trail, "\\");
|
||||
token = strtok (NULL, "\\/");
|
||||
if (token)
|
||||
{ /* get share name */
|
||||
{
|
||||
strcat (trail, token);
|
||||
strcat (trail, "\\");
|
||||
token = strtok (NULL, "\\/");
|
||||
if (token)
|
||||
{ /* get share name */
|
||||
strcat (trail, token);
|
||||
strcat (trail, "\\");
|
||||
}
|
||||
token = strtok (NULL, "\\/");
|
||||
}
|
||||
token = strtok (NULL, "\\/");
|
||||
}
|
||||
|
||||
if (tokpath[1] == ':')
|
||||
|
Loading…
Reference in New Issue
Block a user