diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-05-22 14:25:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 12:25:50 +0000 |
commit | f04b16161bc542075fdb8e5946a8eed976f26b0b (patch) | |
tree | c78e0c7ae1230a29f8a0ecdfb013dde693af634f /CHANGELOG.md | |
parent | 38fed9a7c233e11e5f62433298235281fc3de885 (diff) | |
download | alacritty-f04b16161bc542075fdb8e5946a8eed976f26b0b.tar.gz alacritty-f04b16161bc542075fdb8e5946a8eed976f26b0b.zip |
Fix FD leak after closing child windows
This patch fixes an issue with signal handling where Alacritty would
permanently create one signal handling FD for each alacritty window
created by an instance. This FD was never released, causing a leak of
the FD.
Closes #7983.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b4947c03..0c6aafe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its - Dynamic title disabled for new windows when initial one has title as CLI option - While terminal in mouse mode, mouse bindings that used the shift modifier and had multiple actions only performed the first action +- Leaking FDs when closing windows on Unix systems ## 0.13.2 |