diff options
author | vitalyd <vitalyd@gmail.com> | 2021-09-27 09:55:59 -0400 |
---|---|---|
committer | Alan Somers <asomers@gmail.com> | 2021-09-28 19:06:52 -0600 |
commit | 1671edc3e7d3fea63fbf721071bd2ddbad8e9e67 (patch) | |
tree | f380df87b8965e37a7d5c7e908b39d9047f01758 /CHANGELOG.md | |
parent | 9a2f86f4cf9bddefc1878a124b4ee6f83e6ef064 (diff) | |
download | nix-1671edc3e7d3fea63fbf721071bd2ddbad8e9e67.zip |
Fix memory unsafety in unistd::getgrouplist
Fixes #1541
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f81268a0..ec3dc7c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,9 +91,10 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Added more errno definitions for better backwards compatibility with Nix 0.21.0. (#[1467](https://github.com/nix-rust/nix/pull/1467)) - - Fixed potential undefined behavior in `Signal::try_from` on some platforms. (#[1484](https://github.com/nix-rust/nix/pull/1484)) +- Fixed buffer overflow in `unistd::getgrouplist`. + (#[1545](https://github.com/nix-rust/nix/pull/1545)) ### Removed |