dtappbuilder: Coverity fixes for mising return value and copy into fixed size buffer

This commit is contained in:
Peter Howkins
2018-04-26 01:36:02 +01:00
parent 4007d3a460
commit bb9eef427f
29 changed files with 81 additions and 82 deletions

View File

@@ -715,9 +715,9 @@ ab_ident_from_file_name(STRING filename)
if (filename != NULL)
{
if (p = (char *) strrchr(filename, '/'))
strcpy(buf, p + 1);
snprintf(buf, sizeof(buf), "%s", p + 1);
else
strcpy(buf, filename);
snprintf(buf, sizeof(buf), "%s", filename);
if (p = (char *) strrchr(buf, '.'))
*p = '\0';