summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-17 00:37:57 +0000
committerGitHub <noreply@github.com>2020-05-17 00:37:57 +0000
commit2ae94ebdd8a46f8860b9e89253654e20017cd355 (patch)
tree222277be6f105151283077b31628cf631794d459 /CHANGELOG.md
parentfe17cb7e803eb02649dc25ad92b788546a066549 (diff)
parent856f841c5e4220504931a0e2bf69c92fd5ece228 (diff)
downloadnix-2ae94ebdd8a46f8860b9e89253654e20017cd355.zip
Merge #1245
1245: Make ptrace::write unsafe on Linux r=asomers a=asomers It always should've been unsafe, because it dereferences a user-provided pointer. Co-authored-by: Alan Somers <asomers@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e0ec632..e39abf11 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -34,6 +34,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Changed `fallocate` return type from `c_int` to `()` (#[1201](https://github.com/nix-rust/nix/pull/1201))
- Enabled `sys::ptrace::setregs` and `sys::ptrace::getregs` on x86_64-unknown-linux-musl target
(#[1198](https://github.com/nix-rust/nix/pull/1198))
+- On Linux, `ptrace::write` is now an `unsafe` function. Caveat programmer.
+ (#[1245](https://github.com/nix-rust/nix/pull/1245))
### Fixed