jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=42b3bc1e8ad61644c2b91ac3e13fbd376021afe1

commit 42b3bc1e8ad61644c2b91ac3e13fbd376021afe1
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Mon Sep 19 19:46:27 2016 +0900

    edje_svg_loader: Initialize char array.
    
    Initialize char array before calling strcmp().
---
 src/bin/edje/edje_svg_loader.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_svg_loader.c b/src/bin/edje/edje_svg_loader.c
index 1b23913..781f141 100644
--- a/src/bin/edje/edje_svg_loader.c
+++ b/src/bin/edje/edje_svg_loader.c
@@ -1734,7 +1734,7 @@ _evas_svg_loader_xml_open_parser(Evas_SVG_Loader *loader,
    const char *attrs = NULL;
    int attrs_length = 0;
    int sz = length;
-   char tag_name[20];
+   char tag_name[20] = "";
    Factory_Method method;
    Gradient_Factory_Method gradient_method;
    Svg_Node *node = NULL, *parent;

-- 


Reply via email to