stefan pushed a commit to branch efl-1.24.

http://git.enlightenment.org/core/efl.git/commit/?id=95af339431833beba81d99261919c9359fdca38b

commit 95af339431833beba81d99261919c9359fdca38b
Author: Hermet Park <[email protected]>
Date:   Tue Jun 2 09:59:51 2020 +0900

    canvas svg: fix missing break.
---
 src/static_libs/vg_common/vg_common_svg.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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;

-- 


Reply via email to