summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-09-19 20:38:12 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-09-19 20:38:12 +0100
commitf3fdcf56923c8a2ca126e14d915e6386c7c4ff7e (patch)
tree922515b700201d6ec10faea007bfd38bffb6f84c
parentf76d925318f8e974957d9702a9164889ab968131 (diff)
downloadefl-f3fdcf56923c8a2ca126e14d915e6386c7c4ff7e.tar.gz
elm - collection view - check return and fix coverity wanring
fix CID 1405808
-rw-r--r--src/lib/elementary/efl_ui_collection_view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_collection_view.c b/src/lib/elementary/efl_ui_collection_view.c
index 7eb6fe42d1..1a7f0079e0 100644
--- a/src/lib/elementary/efl_ui_collection_view.c
+++ b/src/lib/elementary/efl_ui_collection_view.c
@@ -1013,7 +1013,7 @@ _batch_size_cb(void *data, Efl_Ui_Position_Manager_Size_Call_Config conf, Eina_R
sizes = memory.mem;
//count = efl_model_children_count_get(parent);
limit = conf.range.end_id - conf.range.start_id;
- ITEM_BASE_SIZE_FROM_MODEL(parent, item_base);
+ if (!ITEM_BASE_SIZE_FROM_MODEL(parent, item_base)) return result;
// Look in the temporary cache now for the beginning of the buffer
#ifdef VIEWPORT_ENABLE