diff options
| author | bfredl <bjorn.linse@gmail.com> | 2024-08-05 14:08:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-05 14:08:28 +0200 |
| commit | fd1d84c705128372dc25e3a833e9a1dc6b9e81e0 (patch) | |
| tree | cd42ac3b29c6b2ac214bd81c3d11ece9dbd406c9 /src/nvim/mark.c | |
| parent | c7b100630ae65b904a722c57f1fde1d9669cc643 (diff) | |
| parent | 1247684ae14e83c5b742be390de8dee00fd4e241 (diff) | |
| download | rneovim-fd1d84c705128372dc25e3a833e9a1dc6b9e81e0.tar.gz rneovim-fd1d84c705128372dc25e3a833e9a1dc6b9e81e0.tar.bz2 rneovim-fd1d84c705128372dc25e3a833e9a1dc6b9e81e0.zip | |
Merge pull request #29540 from bfredl/neoshada
refactor(shada): rework msgpack decoding without msgpack-c
Diffstat (limited to 'src/nvim/mark.c')
| -rw-r--r-- | src/nvim/mark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mark.c b/src/nvim/mark.c index fae28ef6e1..a09ade2b03 100644 --- a/src/nvim/mark.c +++ b/src/nvim/mark.c @@ -71,7 +71,7 @@ int setmark(int c) /// Free fmark_T item void free_fmark(fmark_T fm) { - tv_dict_unref(fm.additional_data); + xfree(fm.additional_data); } /// Free xfmark_T item |
