From ae8a067e6dd1d9e7035571dc7d260597505e776f Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Tue, 10 Dec 2013 20:37:17 +0100 Subject: [PATCH] e: Check whether allocation succeeds CID 1039865 --- src/bin/e_container.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_container.c b/src/bin/e_container.c index 636fef7c4..fc354af76 100644 --- a/src/bin/e_container.c +++ b/src/bin/e_container.c @@ -339,6 +339,7 @@ e_container_shape_add(E_Container *con) E_OBJECT_TYPE_CHECK_RETURN(con, E_CONTAINER_TYPE, 0); es = E_OBJECT_ALLOC(E_Container_Shape, E_CONTAINER_SHAPE_TYPE, _e_container_shape_free); + if (!es) return NULL; E_OBJECT_DEL_SET(es, _e_container_shape_del); es->con = con; con->shapes = eina_list_append(con->shapes, es);