From a5e43587a2624341edf7bd28b57c1dc3f00d47d2 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Mon, 18 Feb 2019 15:09:44 +0900 Subject: [PATCH] evas vg: check for OOM when calloc() --- src/static_libs/vg_common/vg_common_svg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/static_libs/vg_common/vg_common_svg.c b/src/static_libs/vg_common/vg_common_svg.c index c55a057..6b18a0e 100644 --- a/src/static_libs/vg_common/vg_common_svg.c +++ b/src/static_libs/vg_common/vg_common_svg.c @@ -847,8 +847,7 @@ _create_node(Svg_Node *parent, Svg_Node_Type type) if (!node->style) { free(node); - ERR("OOM: Failed calloc()"); - return NULL; + EINA_SAFETY_ON_NULL_RETURN_VAL(node->style, NULL); } // update the default value of stroke and fill -- 2.7.4