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