From 1fc6b4a150ff6820adcd36f4694f1f490e7a48fb Mon Sep 17 00:00:00 2001 From: Vladimir Davydov <vdavydov@tarantool.org> Date: Mon, 23 Oct 2023 15:04:16 +0300 Subject: [PATCH] Add changelog for gh-9218 The bug was fixed in the small library: - slab: fix NULL ptr deref in assertion in slab_get https://github.com/tarantool/small/commit/ef77efacd452cb90caea2caf22d266f791c95ec3 - slab: fix uint32_t overflow in slab_capacity https://github.com/tarantool/small/commit/77203600a7c645d97bce56f901eec25de0b29d6e The small library submodule was updated in commit ebafd68409ef ("small: bump version"). Closes #9218 NO_DOC=changelog NO_TEST=changelog --- changelogs/unreleased/gh-9218-net-box-crash-fix.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changelogs/unreleased/gh-9218-net-box-crash-fix.md diff --git a/changelogs/unreleased/gh-9218-net-box-crash-fix.md b/changelogs/unreleased/gh-9218-net-box-crash-fix.md new file mode 100644 index 0000000000..3379ed1c34 --- /dev/null +++ b/changelogs/unreleased/gh-9218-net-box-crash-fix.md @@ -0,0 +1,4 @@ +## bugfix/core + +* Fixed a bug in the network buffer that could result in a crash when there are + a lot of pending requests (gh-9218) -- GitLab