* edje: strcpy could only go wrong.

SVN revision: 55020
This commit is contained in:
Cedric BAIL 2010-11-26 16:46:35 +00:00
parent 95f36c0e18
commit 756df73df7
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ _edje_external_param_get(const Evas_Object *obj, Edje_Real_Part *rp, Edje_Extern
param->type = EDJE_EXTERNAL_PARAM_TYPE_STRING;
param->name = "text";
text = edje_object_part_text_get(obj, rp->part->name);
strcpy (param->s, text);
param->s = text;
return EINA_TRUE;
}