This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository evisum.
View the commit online.
commit 84e7e4a8de492c14f9f1786ba11286017f460f0d
Author: Alastair Poole <[email protected]>
AuthorDate: Thu May 7 21:42:55 2026 +0100
cache: NULLs
---
src/bin/ui/evisum_ui_cache.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/bin/ui/evisum_ui_cache.c b/src/bin/ui/evisum_ui_cache.c
index d6777fe..91d5e6d 100644
--- a/src/bin/ui/evisum_ui_cache.c
+++ b/src/bin/ui/evisum_ui_cache.c
@@ -30,6 +30,7 @@ evisum_ui_item_cache_steal(Evisum_Ui_Cache *cache, Eina_List *objs) {
Evas_Object *o;
EINA_LIST_FOREACH_SAFE(cache->active, l, l_next, it) {
+ if (!it) continue;
int found = 0;
EINA_LIST_FOREACH(objs, l2, o) {
if (it->obj == o) {
@@ -39,7 +40,7 @@ evisum_ui_item_cache_steal(Evisum_Ui_Cache *cache, Eina_List *objs) {
}
if (!found) {
cache->active = eina_list_remove_list(cache->active, l);
- evas_object_del(it->obj);
+ if (it->obj) evas_object_del(it->obj);
free(it);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.