mirror of
https://github.com/neovim/neovim.git
synced 2026-02-26 04:12:39 +10:00
Problem: write() can return -1 but is cast to unsigned type causing coverity to detect possible overflowed integer Solution: Perform check to ensure all negative values are captured rather than just -1 before casting to unsigned type