From: Chet Ramey Date: Mon, 29 Jan 2018 21:03:33 +0000 (-0500) Subject: Bash-4.4 patch 13 X-Git-Tag: bash-5.0-alpha~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1aef9c7b55dcef4af239caf93e01419e1c8e04ad;p=thirdparty%2Fbash.git Bash-4.4 patch 13 --- diff --git a/patchlevel.h b/patchlevel.h index 93dbe0db3..779671cd9 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 12 +#define PATCHLEVEL 13 #endif /* _PATCHLEVEL_H_ */ diff --git a/redir.c b/redir.c index 25488eaf9..1858b0b08 100644 --- a/redir.c +++ b/redir.c @@ -469,6 +469,8 @@ here_document_to_fd (redirectee, ri) return (fd); } + SET_CLOSE_ON_EXEC (fd); + errno = r = 0; /* XXX */ /* write_here_document returns 0 on success, errno on failure. */ if (redirectee->word)