This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 9778dc97388321428a043fa3e42968de0e102c3d
Author: Marcel Hollerbach <m...@marcel-hollerbach.de>
AuthorDate: Thu Sep 15 18:45:07 2022 +0200

    more output
---
 src/bin/e_pointer.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_pointer.c b/src/bin/e_pointer.c
index 6886d929a..b54d7dd09 100644
--- a/src/bin/e_pointer.c
+++ b/src/bin/e_pointer.c
@@ -849,7 +849,7 @@ e_pointer_object_set(E_Pointer *ptr, Evas_Object *obj, int x, int y)
    int px, py;
 
    EINA_SAFETY_ON_NULL_RETURN(ptr);
-   EINA_SAFETY_ON_NULL_RETURN(ptr->o_ptr);
+   EINA_SAFETY_ON_NULL_GOTO(ptr->o_ptr, misst);
 
    ecore_evas_cursor_get(ptr->ee, &o, NULL, &px, &py);
    if (o)
@@ -885,6 +885,10 @@ e_pointer_object_set(E_Pointer *ptr, Evas_Object *obj, int x, int y)
    ptr->client.ec = ec;
    ptr->client.x = x;
    ptr->client.y = y;
+
+   return;
+misst:
+   ERR("Failure with %p", ptr);
 }
 
 E_API void

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to