1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

libDtSearch: Coverity 86856

This commit is contained in:
Peter Howkins 2018-07-02 23:01:54 +01:00
parent c8233c9200
commit 0876476cae

View file

@ -182,8 +182,7 @@ char *dbfpath /* one element from DBFPATH, or NULL for no path */
}
if (strlen(path_str) + strlen(dbfpath) >= FILENMLEN)
return (db_status = S_NAMELEN);
strcpy(filespec,dbfpath);
strcat(filespec,remdrv(path_str));
snprintf(filespec, sizeof(filespec), "%s%s", dbfpath, remdrv(path_str));
strcpy(path_str,filespec);
return (db_status = S_OKAY);