aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2024-10-17 18:10:31 +0300
committerGitHub <noreply@github.com>2024-10-17 18:10:31 +0300
commit674635c27c2a4a906a5e95d522ee8f767e36cbd2 (patch)
treedb3a02d4151fdaf1cd61a245a688ba8820e7ba5c
parent1cc08ebbf81de5ab65e7ede6a4df9a1d80861acf (diff)
downloadalacritty-674635c27c2a4a906a5e95d522ee8f767e36cbd2.tar.gz
alacritty-674635c27c2a4a906a5e95d522ee8f767e36cbd2.zip
Fix pipe FD leak on X11
The pipe was not using O_CLOEXEC, so it was leaked into the child. Fixes #8249.
-rw-r--r--Cargo.lock4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cb1a64f2..55a50f33 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2626,9 +2626,9 @@ dependencies = [
[[package]]
name = "x11-clipboard"
-version = "0.9.2"
+version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b98785a09322d7446e28a13203d2cae1059a0dd3dfb32cb06d0a225f023d8286"
+checksum = "662d74b3d77e396b8e5beb00b9cad6a9eccf40b2ef68cc858784b14c41d535a3"
dependencies = [
"libc",
"x11rb",