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

git pushed a commit to branch master
in repository efm2.

View the commit online.

commit b0b34c95ae4b7cf55f204b4fc66924d673a61151
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Sun Aug 27 14:32:57 2023 +0100

    use eina_strndup
    
    fixes #1
---
 src/backends/common/fs_backend_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backends/common/fs_backend_core.c b/src/backends/common/fs_backend_core.c
index a975d15..b5725f7 100644
--- a/src/backends/common/fs_backend_core.c
+++ b/src/backends/common/fs_backend_core.c
@@ -56,7 +56,7 @@ _cb_stdio_in_read(void *data EINA_UNUSED, Ecore_Fd_Handler *fd_handler EINA_UNUS
              nl = strchr(str, '\n');
              if (!nl) break;
 
-             s = strndup(str, nl - str);
+             s = eina_strndup(str, nl - str);
              if (!s) break;
              c = cmd_parse(s);
              if (c)

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

Reply via email to