Static Code Analysis : Add check on the return of strtok inside mkfulldir_internal to avoid warning.

This commit is contained in:
Mounir IDRASSI 2014-07-14 17:16:39 +02:00
parent f3625a080f
commit 5c1db9d0e1

View File

@ -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] == ':')