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

git pushed a commit to branch v-0.25.0
in repository enlightenment.

View the commit online.

commit 0aeeefb4058da8042d9f57b8ce27513f2dc29de9
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Aug 1 17:11:42 2022 +0100

    mesgbus - fix nukll name dbus string send
    
    This fixes #11
---
 src/modules/msgbus/msgbus_window.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/modules/msgbus/msgbus_window.c b/src/modules/msgbus/msgbus_window.c
index 5158a877c..610e1ac1f 100644
--- a/src/modules/msgbus/msgbus_window.c
+++ b/src/modules/msgbus/msgbus_window.c
@@ -62,12 +62,15 @@ _e_msgbus_window_list_cb(const Eldbus_Service_Interface *iface EINA_UNUSED,
    EINA_LIST_FOREACH(e_comp->clients, l, ec)
      {
         Eldbus_Message_Iter *s;
+        const char *name;
 
         if (e_client_util_ignored_get(ec)) continue;
 
         eldbus_message_iter_arguments_append(array, "(si)", &s);
         if (!s) continue;
-        eldbus_message_iter_arguments_append(s, "si", ec->icccm.name,
+        name = ec->icccm.name;
+        if (!name) name = "";
+        eldbus_message_iter_arguments_append(s, "si", name,
                                             e_client_util_win_get(ec));
         eldbus_message_iter_container_close(array, s);
      }

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

Reply via email to