From 7c6adbd6fe44cfdc71558154ea0b3cf2b775bda9 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 18 May 2022 12:53:08 +0100 Subject: [PATCH] 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)