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 1d5c87845fbd73386fe4ec85645a7f368723f7bf
Author: Carsten Haitzler <[email protected]>
AuthorDate: Wed May 18 12:53:08 2022 +0100
open - fix warning with possible uninitted var
@fix
---
src/bin/tools/open/e_open.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/tools/open/e_open.c b/src/bin/tools/open/e_open.c
index 3a679fbcb..52250034e 100644
--- a/src/bin/tools/open/e_open.c
+++ b/src/bin/tools/open/e_open.c
@@ -508,7 +508,7 @@ main(int argc, char *argv[])
ECORE_GETOPT_VALUE_NONE
};
int args;
- char **cmds;
+ char **cmds = NULL;
args = ecore_getopt_parse(&options, values, argc, argv);
if (args < 0)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.