raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=dcc55bbfd4abb847a4275af5528af7f8a2ffaa10
commit dcc55bbfd4abb847a4275af5528af7f8a2ffaa10 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Aug 13 11:52:59 2014 +0900 eina - and follow-on calloc fixup - 0 terminate first calloced string this follows on from 6dc52db881cbe29dfe8b9a2a0a6745a8b3fa0673 --- src/lib/eina/eina_unicode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eina/eina_unicode.c b/src/lib/eina/eina_unicode.c index 44bfac6..d7c323d 100644 --- a/src/lib/eina/eina_unicode.c +++ b/src/lib/eina/eina_unicode.c @@ -335,6 +335,7 @@ eina_unicode_utf8_to_unicode(const char *utf, int *_len) { *uind = eina_unicode_utf8_next_get(utf, &ind); } + *uind = 0; return buf; } --
