Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8bcfb8bc authored by Tareq A. Siraj's avatar Tareq A. Siraj Committed by Edwin Vane
Browse files

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>
parent ce76e2d0
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -687,14 +687,14 @@ evalcommand(union node *cmd, int flags, struct backcmd *backcmd)
	struct cmdentry cmdentry;
	struct cmdentry cmdentry;
	struct job *jp;
	struct job *jp;
	struct jmploc jmploc;
	struct jmploc jmploc;
	struct jmploc *volatile savehandler;
	struct jmploc *volatile savehandler = 0;
	char *volatile savecmdname;
	char *volatile savecmdname;
	volatile struct shparam saveparam;
	volatile struct shparam saveparam;
	struct localvar *volatile savelocalvars;
	struct localvar *volatile savelocalvars;
	volatile int e;
	volatile int e;
	char *lastarg;
	char *lastarg;
	const char *path = pathval();
	const char *path = pathval();
	volatile int temp_path;
	volatile int temp_path = 0;
#if __GNUC__
#if __GNUC__
	/* Avoid longjmp clobbering */
	/* Avoid longjmp clobbering */
	(void) &argv;
	(void) &argv;