about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-08-06 15:45:37 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-08-06 15:45:37 +0000
commitd026334a3b25a2150d59a3f53a20d39ddb96ab56 (patch)
tree68c3984835959b03d9b9f09d37951af40edc47da /Src/exec.c
parentb36d4eec0b6016d5968885d71034df51bce491e8 (diff)
downloadzsh-d026334a3b25a2150d59a3f53a20d39ddb96ab56.tar.gz
zsh-d026334a3b25a2150d59a3f53a20d39ddb96ab56.tar.xz
zsh-d026334a3b25a2150d59a3f53a20d39ddb96ab56.zip
25405: return status from anonymous functions was not handled
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/exec.c b/Src/exec.c
index daa7ba55c..5b360815f 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -3870,7 +3870,7 @@ execfuncdef(Estate state, UNUSED(int do_exec))
 {
     Shfunc shf;
     char *s = NULL;
-    int signum, nprg, sbeg, nstrs, npats, len, plen, i, htok = 0;
+    int signum, nprg, sbeg, nstrs, npats, len, plen, i, htok = 0, ret = 0;
     Wordcode beg = state->pc, end;
     Eprog prog;
     Patprog *pp;
@@ -3941,6 +3941,7 @@ execfuncdef(Estate state, UNUSED(int do_exec))
 	    addlinknode(args, shf->node.nam);
 
 	    execshfunc(shf, args);
+	    ret = lastval;
 	    break;
 	} else {
 	    /* is this shell function a signal trap? */
@@ -3963,7 +3964,7 @@ execfuncdef(Estate state, UNUSED(int do_exec))
 	}
     }
     state->pc = end;
-    return 0;
+    return ret;
 }
 
 /* Main entry point to execute a shell function. */