summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@datenfreihafen.org>2020-09-21 11:06:39 +0200
committerStefan Schmidt <stefan@datenfreihafen.org>2020-09-21 11:09:07 +0200
commitddd0736264e3e6d35caac3a40295538fb971bd78 (patch)
treec6d9b913453700e0a17502dfce1c59297661a506
parent1638a79bd6d9e545bc92afe828b10d653d7adfc4 (diff)
downloadefl-ddd0736264e3e6d35caac3a40295538fb971bd78.tar.gz
Revert "elm - collection view - check return and fix coverity wanring"
This reverts commit f3fdcf56923c8a2ca126e14d915e6386c7c4ff7e. This commit leads to ninja test timeout. When returning result here the future will never fire and we will keep spinning.
-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 1a7f0079e0..7eb6fe42d1 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;
- if (!ITEM_BASE_SIZE_FROM_MODEL(parent, item_base)) return result;
+ ITEM_BASE_SIZE_FROM_MODEL(parent, item_base);
// Look in the temporary cache now for the beginning of the buffer
#ifdef VIEWPORT_ENABLE