From c43308efb4e02849333bd5c1780dc8a149dd14ee Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 29 Sep 2016 09:50:02 +0900 Subject: [PATCH] eo - silence coverit "leak" on eo init if eoid table tls alloc fails creating a new tls for the eoid table should just never fail so this is moot anyway, but it silences CID 1362735 --- src/lib/eo/eo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index ab52194968..b98fb9365f 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1917,6 +1917,7 @@ efl_object_init(void) if (!eina_tls_cb_new(&_eo_table_data, _eo_table_del_cb)) { EINA_LOG_ERR("Could not allocate TLS for eo domain data"); + _eo_table_del_cb(data); return EINA_FALSE; } eina_tls_set(_eo_table_data, data);