mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 10:56:31 +00:00

ASAN detected this heap-use-after-free. A job started by channel_from_job() could terminate and result in a call to free_channel(), while channel_send_call() was still active/pending and accessing Channel elements. Original patch by @tarruda.