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 7c6adbd6fe44cfdc71558154ea0b3cf2b775bda9
Author: Carsten Haitzler <ras...@rasterman.com>
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.