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

git pushed a commit to branch master
in repository edi.

View the commit online.

commit 75963483db31be8253636395b476fe5e6d86d1b1
Author: Alastair Poole <[email protected]>
AuthorDate: Mon May 11 21:04:47 2026 +0100

    edi_exe: use correct contstant and free address.
---
 src/lib/edi_exe.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/edi_exe.c b/src/lib/edi_exe.c
index 14b48f0..7644ba1 100644
--- a/src/lib/edi_exe.c
+++ b/src/lib/edi_exe.c
@@ -43,7 +43,7 @@ _edi_exe_notify_client_data_cb(void *data, int type EINA_UNUSED, void *event EIN
    ecore_con_server_flush(srv);
 
    // ecore_con_server_del(srv);
-   char *address = ecore_con_local_path_new(EINA_FALSE, (char *) args->name, 0);
+   char *address = ecore_con_local_path_new(ECORE_CON_LOCAL_USER, (char *) args->name, 0);
    if ((address) && (ecore_file_exists(address)))
      {
         /* FIXME: If we just delete the server here we spin at 100% on a core
@@ -51,6 +51,7 @@ _edi_exe_notify_client_data_cb(void *data, int type EINA_UNUSED, void *event EIN
          * that.
          */
         ecore_file_remove(address);
+        free(address);
      }
    free(args->name);
    free(args);

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

Reply via email to