summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-20 18:39:46 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-20 18:39:46 +0100
commit20431c9dbb592ebe0666bf042af7d2b373107372 (patch)
tree6cff691f11db2432b46a3c979ba23f95e0ca41dc /src/structs.h
parent8b633135106dda8605463b780573c45b00c22afe (diff)
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/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 76d45ea8f2..ff32cb2c8e 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1308,6 +1308,7 @@ typedef struct {
int cb_free_name; // cb_name was allocated
} callback_T;
+typedef struct isn_S isn_T; // instruction
typedef struct dfunc_S dfunc_T; // :def function
typedef struct jobvar_S job_T;