Mercurial > vim
view runtime/compiler/bdf.vim @ 30972:62a42d860d87 v9.0.0821
patch 9.0.0820: memory leak with empty shell command
Commit: https://github.com/vim/vim/commit/86e6717ace4f5e00eaeb84b59e3fc92bca548155
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Oct 31 12:24:12 2022 +0000
patch 9.0.0820: memory leak with empty shell command
Problem: Memory leak with empty shell command.
Solution: Free the empty string.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 02 Nov 2022 11:18:51 +0100 |
parents | 1218c5353e2b |
children | 2c3f939d46bf |
line wrap: on
line source
" Vim compiler file " Compiler: BDF to PCF Conversion " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2006-04-19 if exists("current_compiler") finish endif let current_compiler = "bdf" let s:cpo_save = &cpo set cpo-=C setlocal makeprg=bdftopcf\ $* setlocal errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m, \%-Z%p^, \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save