summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHermet Park <chuneon.park@samsung.com>2020-06-02 09:59:51 +0900
committerHermet Park <chuneon.park@samsung.com>2020-06-02 13:18:17 +0900
commit9d1423f2033cdd59db1d2f6f33df878d1de040fa (patch)
tree01f7b1e020563a879d51300e4da410b4ec9d8c9a
parent214e5d2cf8f0c63c9222a990a7333c49a50459ae (diff)
downloadefl-9d1423f2033cdd59db1d2f6f33df878d1de040fa.tar.gz
canvas svg: fix missing break.
-rw-r--r--src/static_libs/vg_common/vg_common_svg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/static_libs/vg_common/vg_common_svg.c b/src/static_libs/vg_common/vg_common_svg.c
index 058cdf99e0..f5b71c43d2 100644
--- a/src/static_libs/vg_common/vg_common_svg.c
+++ b/src/static_libs/vg_common/vg_common_svg.c
@@ -536,9 +536,10 @@ vg_common_svg_node_free(Svg_Node *node)
{
_svg_style_gradient_free(grad);
}
+ break;
case SVG_NODE_CUSTOME_COMMAND:
if (node->node.command.commands) free(node->node.command.commands);
- if (node->node.command.points) free(node->node.command.points);
+ if (node->node.command.points) free(node->node.command.points);
break;
default:
break;