Fixed un-initialized variable warnings
These un-initialized variables were being used before initialized. Change-Id: I80c94c5e0c2e959834b99618549377bfb3607272 Author: Tareq A. Siraj <tareq.a.siraj@intel.com>
This commit is contained in:
parent
ce76e2d00e
commit
8bcfb8bcff
1 changed files with 2 additions and 2 deletions
|
@ -687,14 +687,14 @@ evalcommand(union node *cmd, int flags, struct backcmd *backcmd)
|
|||
struct cmdentry cmdentry;
|
||||
struct job *jp;
|
||||
struct jmploc jmploc;
|
||||
struct jmploc *volatile savehandler;
|
||||
struct jmploc *volatile savehandler = 0;
|
||||
char *volatile savecmdname;
|
||||
volatile struct shparam saveparam;
|
||||
struct localvar *volatile savelocalvars;
|
||||
volatile int e;
|
||||
char *lastarg;
|
||||
const char *path = pathval();
|
||||
volatile int temp_path;
|
||||
volatile int temp_path = 0;
|
||||
#if __GNUC__
|
||||
/* Avoid longjmp clobbering */
|
||||
(void) &argv;
|
||||
|
|
Loading…
Reference in a new issue