summaryrefslogtreecommitdiffstats
path: root/zellij-utils
diff options
context:
space:
mode:
authorgbrigandi <gbrigandi@users.noreply.github.com>2023-03-24 06:48:58 -0700
committerGitHub <noreply@github.com>2023-03-24 14:48:58 +0100
commitc61c27abe602af45183b482ac2be0cff5d00dc80 (patch)
tree1e7d9d6cdb2d9cfd2515252c1b1db2018f97860b /zellij-utils
parent48174d10f8a75d0b2b4d11efc74426166cfebecc (diff)
fix: Fix crash and memory leak by updating interprocess dep
When a client connects to the zellij server, a Unix socket is created. However, a bug in version 1.1.1 and earlier of the interprocess crate used for interprocess communication (IPC) prevented the socket from being properly disposed of after use, which generated a descriptor leak. The bug was fixed in version 1.2.0 of the interprocess crate.
Diffstat (limited to 'zellij-utils')
-rw-r--r--zellij-utils/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index c682393e3..b6f362798 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -44,7 +44,7 @@ kdl = { version = "4.5.0", features = ["span"] }
termwiz = "0.20.0"
log4rs = "1.2.0"
signal-hook = "0.3"
-interprocess = "1.1.1"
+interprocess = "1.2.1"
async-std = { version = "1.3.0", features = ["unstable"] }
[dev-dependencies]