diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-23 15:59:59 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-23 23:44:32 +0200 |
commit | 2a49163103827465f25810f5f4e3d4305159f209 (patch) | |
tree | 673b3f877e9ff51cb27ed1c844495b3f432d5f45 /src/nvim/api/vim.c | |
parent | 5c9860a0a2bf27d409c986673f0a74542561c4c3 (diff) | |
download | rneovim-2a49163103827465f25810f5f4e3d4305159f209.tar.gz rneovim-2a49163103827465f25810f5f4e3d4305159f209.tar.bz2 rneovim-2a49163103827465f25810f5f4e3d4305159f209.zip |
api_clear_error()
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index bd4a196367..2c78ffdec1 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -799,7 +799,7 @@ Array nvim_call_atomic(uint64_t channel_id, Array calls, Error *err) validation_error: api_free_array(results); theend: - api_free_error(&nested_error); + api_clear_error(&nested_error); return rv; } |