elementary/elm_entry : fix a mistake in commit 69829

SVN revision: 69850
This commit is contained in:
WooHyun Jung 2012-04-02 06:33:40 +00:00
parent c9d0fc793b
commit 13fc2af34a
1 changed files with 1 additions and 1 deletions

View File

@ -2350,7 +2350,7 @@ _elm_entry_text_get(const Evas_Object *obj, const char *item)
}
memcpy(tmpbuf, text, tlen);
if (wd->append_text_left)
memcpy(tmpbuf + tlen, wd->append_text_left, strlen(wd->append_text_len));
memcpy(tmpbuf + tlen, wd->append_text_left, strlen(wd->append_text_left));
tmpbuf[tlen + wd->append_text_len] = '\0';
eina_stringshare_replace(&wd->text, tmpbuf);
free(tmpbuf);