cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=589fa6f1b60c840af2c1f2e481b761ffdf6c6cab

commit 589fa6f1b60c840af2c1f2e481b761ffdf6c6cab
Author: Cedric Bail <ced...@osg.samsung.com>
Date:   Mon Jun 12 10:04:10 2017 -0700

    edje: fix unitialized warning.
---
 src/lib/edje/edje_part_text.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/edje/edje_part_text.c b/src/lib/edje/edje_part_text.c
index c5ee06e37c..e7f8abdb56 100644
--- a/src/lib/edje/edje_part_text.c
+++ b/src/lib/edje/edje_part_text.c
@@ -145,7 +145,7 @@ 
_efl_canvas_layout_internal_text_efl_text_cursor_cursor_content_get(Eo *obj,
       const Efl_Text_Cursor_Cursor_Data *cur)
 {
    Eina_Unicode *ustr;
-   Eina_Unicode uc;
+   Eina_Unicode uc = { 0 };
    char *c;
    int len;
 

-- 


Reply via email to