Revert "edje/edje_cc: use strncpy() instead of strcpy()."

This reverts commit ab1a72f5e7.

just dismiss in coverity if the code is not actually wrong
This commit is contained in:
Carsten Haitzler 2016-09-22 08:31:04 +09:00
parent 8c28a70b43
commit 53095d6fc7
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ next_token(char *p, char *end, char **new_p, int *delim)
l = sscanf(tmpstr, "%*s %i \"%[^\"]\"", &nm, fl);
if (l == 2)
{
strncpy(file_buf, fl, sizeof(file_buf));
strcpy(file_buf, fl);
line = nm;
file_in = file_buf;
}