diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-17 23:20:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-17 23:20:24 +0200 |
commit | 96ca27a0ee8ae738cab9fb386984c75c6821e31a (patch) | |
tree | d4c986e7262a996a095f6b4b71601dfc361c57a5 /src/proto/channel.pro | |
parent | 60d0e97497f1104b31f711072ef174af533b61fa (diff) | |
download | vim-git-96ca27a0ee8ae738cab9fb386984c75c6821e31a.tar.gz |
patch 8.0.0728: the terminal structure is never freedv8.0.0728
Problem: The terminal structure is never freed.
Solution: Free the structure and unreference what it contains.
Diffstat (limited to 'src/proto/channel.pro')
-rw-r--r-- | src/proto/channel.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro index 6c845ca94..e576584c4 100644 --- a/src/proto/channel.pro +++ b/src/proto/channel.pro @@ -67,5 +67,5 @@ void job_check_ended(void); job_T *job_start(typval_T *argvars, jobopt_T *opt_arg); char *job_status(job_T *job); void job_info(job_T *job, dict_T *dict); -int job_stop(job_T *job, typval_T *argvars); +int job_stop(job_T *job, typval_T *argvars, char *type); /* vim: set ft=c : */ |