This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch fix-release-build
in repository efl.
View the commit online.
commit bb32bb8fc2993662ac7bcb46d3556744faaf8e91
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Aug 6 13:55:48 2026 +0100
ecore-con: url - use unref not del for parentless objects
warning fixed
@fix
---
src/lib/ecore_con/efl_net_dialer_http.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/ecore_con/efl_net_dialer_http.c b/src/lib/ecore_con/efl_net_dialer_http.c
index ba79307c9b..0b183953ee 100644
--- a/src/lib/ecore_con/efl_net_dialer_http.c
+++ b/src/lib/ecore_con/efl_net_dialer_http.c
@@ -1778,7 +1778,7 @@ _efl_net_dialer_http_efl_io_closer_close(Eo *o, Efl_Net_Dialer_Http_Data *pd)
if (pd->fdhandler)
{
DBG("dialer=%p fdhandler=%p still alive!", o, pd->fdhandler);
- efl_del(pd->fdhandler);
+ efl_unref(pd->fdhandler);
pd->fdhandler = NULL;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.