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

* commit '80bcb4893058be698bae1bef59c4b28edda6c744':
  Fixed un-initialized variable warnings
This commit is contained in:
Stephen Hines 2012-08-08 16:02:41 -07:00 committed by Android Git Automerger
commit 02adb534da

View file

@ -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;