Go Sachiel :)

dh

Enlightenment SVN wrote:
> Log:
>   another sachiel fix! :)
>   
>   
> Author:       raster
> Date:         2008-10-28 20:29:10 -0700 (Tue, 28 Oct 2008)
> New Revision: 37292
> 
> Modified:
>   trunk/evas/src/lib/canvas/evas_object_textblock.c 
> 
> Modified: trunk/evas/src/lib/canvas/evas_object_textblock.c
> ===================================================================
> --- trunk/evas/src/lib/canvas/evas_object_textblock.c 2008-10-29 01:51:45 UTC 
> (rev 37291)
> +++ trunk/evas/src/lib/canvas/evas_object_textblock.c 2008-10-29 03:29:10 UTC 
> (rev 37292)
> @@ -1788,12 +1788,16 @@
>  
>     if ((repch) && (n->text))
>       {
> -     int i, len = strlen(n->text), chlen;
> +     int i = 0, len = 0, chlen;
> +     char *ptr;
>  
> +     while (evas_common_font_utf8_get_next(n->text, &i))
> +       len++;
>       chlen = strlen(repch);
>       str = alloca((len * chlen) + 1);
> -     for (i = 0; i < len; i += chlen)
> -       strcpy(&(str[i]), repch);
> +     for (i = 0, ptr = str; i < len; ptr += chlen, i++)
> +       memcpy(ptr, repch, chlen);
> +     *ptr = 0;
>       }
>     else
>       str = n->text;
> 
> 
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> enlightenment-svn mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> 


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to