Mercurial > vim
view runtime/compiler/shellcheck.vim @ 31186:433e92a6efb0 v9.0.0927
patch 9.0.0927: Coverity warns for using a NULL pointer
Commit: https://github.com/vim/vim/commit/96cbbe29debba25d7eec8d01955c5ac01f5c420d
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Nov 23 11:36:22 2022 +0000
patch 9.0.0927: Coverity warns for using a NULL pointer
Problem: Coverity warns for using a NULL pointer.
Solution: Check for memory allocaion failure.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 23 Nov 2022 12:45:05 +0100 |
parents | a3bb84cd0f59 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: ShellCheck " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2020 Sep 4 if exists("current_compiler") finish endif let current_compiler = "shellcheck" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo&vim CompilerSet makeprg=shellcheck\ -f\ gcc CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m\ [SC%n], \%f:%l:%c:\ %tarning:\ %m\ [SC%n], \%f:%l:%c:\ %tote:\ %m\ [SC%n], \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save