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

Commit 02adb534 authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

am 80bcb489: Merge "Fixed un-initialized variable warnings"

* commit '80bcb489':
  Fixed un-initialized variable warnings
parents faad67fa 80bcb489
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;