Files
neovim/test/functional/ui/embed_spec.lua
zeertzjq 66b8018b06 fix(channel): closing socket with pending writes leaks memory (#36400)
Problem:  Closing socket with pending writes leaks memory.
Analysis: When calling rstream_may_close() on an RStream with pending
          writes, it waits for write_cb() to call stream_close_handle(),
          which closes it as if it's a WStream and doesn't free the
          RStream's buffer.
Solution: Ensure that an RStream's buffer is freed when it's closed.
2025-10-31 01:49:21 +00:00

11 KiB