edje edje_cc_out: use strncpy().

This change is not much meaningful but avoids an annoying coverity detection.
This commit is contained in:
Hermet Park 2016-09-21 15:19:19 +09:00
parent 06bd8dcf33
commit 6de3b2c5d3
1 changed files with 3 additions and 2 deletions

View File

@ -4036,9 +4036,10 @@ data_process_string(Edje_Part_Collection *pc, const char *prefix, char *s, void
int quote, escape;
keyl = strlen(prefix) + 2;
key = alloca(keyl + 1);
int key_len = keyl + 1;
key = alloca(key_len);
if (!key) return;
strcpy(key, prefix);
strncpy(key, prefix, key_len);
strcat(key, ":\"");
quote = 0;
escape = 0;