-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated provided by kre@ Changes: 9. The bash malloc implementation of malloc_usable_size() does not follow the specification. This can cause library functions that use it to overwrite memory bounds checking. 10. If `wait -n' is interrupted by a trapped signal other than SIGINT, it does not completely clean up state, and that can prevent subsequent calls to `wait -n' from working correctly. 11. When reading a compound assignment, and running it through the parser to split it into words, we need to save and restore any alias we're currently expanding. 12. There is a possible race condition that arises when a child process receives a signal trapped by the parent before it can reset the signal dispositions. The child process is not supposed to trap the signal
- Loading branch information
Showing
3 changed files
with
16 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
# $NetBSD: Makefile,v 1.101 2021/07/21 10:24:16 jperkin Exp $ | ||
# $NetBSD: Makefile,v 1.102 2021/11/18 20:38:19 wiz Exp $ | ||
|
||
BASH_VERSION= 5.1 | ||
BASH_PATCHLEVEL= 8 | ||
|
||
PKGREVISION= 3 | ||
BASH_PATCHLEVEL= 12 | ||
|
||
DISTNAME= bash-${BASH_VERSION} | ||
PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL} | ||
|
@@ -13,6 +11,7 @@ MASTER_SITES= ${MASTER_SITE_GNU:=bash/} | |
PATCH_SITES= ${MASTER_SITES:=bash-5.1-patches/} | ||
PATCHFILES+= bash51-001 bash51-002 bash51-003 bash51-004 | ||
PATCHFILES+= bash51-005 bash51-006 bash51-007 bash51-008 | ||
PATCHFILES+= bash51-009 bash51-010 bash51-011 bash51-012 | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://www.gnu.org/software/bash/bash.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.