diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-20 18:39:46 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-20 18:39:46 +0100 |
commit | 20431c9dbb592ebe0666bf042af7d2b373107372 (patch) | |
tree | 6cff691f11db2432b46a3c979ba23f95e0ca41dc /src/proto/vim9compile.pro | |
parent | 8b633135106dda8605463b780573c45b00c22afe (diff) | |
download | vim-git-20431c9dbb592ebe0666bf042af7d2b373107372.tar.gz |
patch 8.2.0419: various memory leaks in Vim9 script codev8.2.0419
Problem: Various memory leaks in Vim9 script code.
Solution: Fix the leaks. (Ozaki Kiichi, closes #5814)
Diffstat (limited to 'src/proto/vim9compile.pro')
-rw-r--r-- | src/proto/vim9compile.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/vim9compile.pro b/src/proto/vim9compile.pro index 6905fc28a..b22bf98bf 100644 --- a/src/proto/vim9compile.pro +++ b/src/proto/vim9compile.pro @@ -9,6 +9,7 @@ imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx); char_u *to_name_const_end(char_u *arg); int assignment_len(char_u *p, int *heredoc); void compile_def_function(ufunc_T *ufunc, int set_return_type); +void delete_instr(isn_T *isn); void delete_def_function(ufunc_T *ufunc); void free_def_functions(void); /* vim: set ft=c : */ |