Terminate the string after strcpy

SVN revision: 50739
This commit is contained in:
Brett Nash 2010-08-02 09:44:01 +00:00
parent 9e468e94e7
commit 7f83020567
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ eina_unicode_strcpy(Eina_Unicode *dest, const Eina_Unicode *source)
while (*source)
*dest++ = *source++;
*dest = 0;
return ret;
}