summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-05-16 14:54:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-05-16 15:12:57 +0200
commitf81f26afbdca2192143de93cdbc3c5eb7c121fc7 (patch)
treebf70863910fde79772f03a13beab9a871a4cddc4 /common
parent49432aecf1cc49770a5b24e498453509d43ae28f (diff)
downloadbarebox-f81f26afbdca2192143de93cdbc3c5eb7c121fc7.tar.gz
barebox-f81f26afbdca2192143de93cdbc3c5eb7c121fc7.tar.xz
hush: setting variables may fail
In case of device parameters setting variables may fail. return the result of set_local_var so that the user has a chance to detect the failure with $?. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/hush.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/common/hush.c b/common/hush.c
index 1447fdb7f1..e6479b212b 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -734,6 +734,7 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
char *p;
glob_t globbuf = {};
int ret;
+ int rcode;
# if __GNUC__
/* Avoid longjmp clobbering */
(void) &i;
@@ -753,8 +754,6 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
child = &pi->progs[0];
if (child->group) {
- int rcode;
-
debug("non-subshell grouping\n");
rcode = run_list_real(ctx, child->group);
@@ -789,7 +788,9 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
free(name);
p = insert_var_value(child->argv[i]);
- set_local_var(p, export_me);
+ rcode = set_local_var(p, export_me);
+ if (rcode)
+ return 1;
if (p != child->argv[i])
free(p);
@@ -798,7 +799,9 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
}
for (i = 0; is_assignment(child->argv[i]); i++) {
p = insert_var_value(child->argv[i]);
- set_local_var(p, 0);
+ rcode = set_local_var(p, 0);
+ if (rcode)
+ return 1;
if (p != child->argv[i]) {
child->sp--;
@@ -808,7 +811,6 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
if (child->sp) {
char * str = NULL;
struct p_context ctx1;
- int rcode;
str = make_string((child->argv + i));
rcode = parse_string_outer(&ctx1, str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);