diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-01-28 17:05:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-01-28 17:05:16 +0100 |
commit | 501383236d203bacad758e82e47a07b877a3b63b (patch) | |
tree | c96e0fee728c53368526301c823b5845c2412e99 /src/proto/digraph.pro | |
parent | d7823d5b7c32f73ca720373ea9c16b1b47f086df (diff) | |
download | vim-git-501383236d203bacad758e82e47a07b877a3b63b.tar.gz |
patch 8.0.1435: memory leak in test_arabicv8.0.1435
Problem: Memory leak in test_arabic.
Solution: Free the from and to parts. (Christian Brabandt, closes #2569)
Diffstat (limited to 'src/proto/digraph.pro')
-rw-r--r-- | src/proto/digraph.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/digraph.pro b/src/proto/digraph.pro index a8d2ae903..3cb7dceb2 100644 --- a/src/proto/digraph.pro +++ b/src/proto/digraph.pro @@ -6,4 +6,5 @@ void putdigraph(char_u *str); void listdigraphs(void); char_u *keymap_init(void); void ex_loadkeymap(exarg_T *eap); +void keymap_clear(garray_T *kmap); /* vim: set ft=c : */ |