mirror of
https://github.com/neovim/neovim.git
synced 2026-08-12 02:05:43 +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.