From: Chet Ramey Date: Mon, 7 May 2012 20:23:06 +0000 (-0400) Subject: Bash-4.2 patch 26 X-Git-Tag: bash-4.3~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=723479771597fa6dbbe6353aedf18e90f80afab5;p=platform%2Fupstream%2Fbash.git Bash-4.2 patch 26 --- diff --git a/execute_cmd.c b/execute_cmd.c index 3f9c150..7432c85 100644 --- a/execute_cmd.c +++ b/execute_cmd.c @@ -2205,7 +2205,7 @@ execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close) current shell environment. */ if (lastpipe_opt && job_control == 0 && asynchronous == 0 && pipe_out == NO_PIPE && prev > 0) { - lstdin = move_to_high_fd (0, 0, 255); + lstdin = move_to_high_fd (0, 1, -1); if (lstdin > 0) { do_piping (prev, pipe_out); @@ -2251,7 +2251,9 @@ execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close) unfreeze_jobs_list (); } +#if defined (JOB_CONTROL) discard_unwind_frame ("lastpipe-exec"); +#endif return (exec_result); } diff --git a/patchlevel.h b/patchlevel.h index c8093cc..b5a234f 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -25,6 +25,6 @@ regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh looks for to find the patch level (for the sccs version string). */ -#define PATCHLEVEL 25 +#define PATCHLEVEL 26 #endif /* _PATCHLEVEL_H_ */