edje_svg_loader: Initialize char array.
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Mon, 19 Sep 2016 10:46:27 +0000 (19:46 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Mon, 19 Sep 2016 10:50:37 +0000 (19:50 +0900)
Initialize char array before calling strcmp().

src/bin/edje/edje_svg_loader.c

index 1b23913..781f141 100644 (file)
@@ -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;