diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-05-09 17:22:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 17:22:08 -0400 |
commit | 9816173fb3bdd7b42943ff770ddcd5c953a77163 (patch) | |
tree | 1e07e730d898d469d1154aefc289ca7074eea91c /runtime/lua/vim/lsp/protocol.lua | |
parent | 2f818eb9ee6a17ec5897f28e167248efb02f1c0e (diff) | |
parent | 7872877ce537389df6fb461bfda23c823acca5fe (diff) | |
download | rneovim-9816173fb3bdd7b42943ff770ddcd5c953a77163.tar.gz rneovim-9816173fb3bdd7b42943ff770ddcd5c953a77163.tar.bz2 rneovim-9816173fb3bdd7b42943ff770ddcd5c953a77163.zip |
Merge #12275 from erw7/profile-fix-use-after-free
viml/profile: fix missing fixes when merging vim-patch:8.1.0130
Fix #12255
### Steps to reproduce using `nvim -u NORC`
```
nvim -u NORC
:function Test()
:endfunction
:profile start log1
:profile func Test
:call Test()
:profile stop
:profile start log2
:profile func Test
:call Test()
:profile stop
```
### Actual behaviour
#### log1
```
FUNCTION Test()
Called 1 times
...
```
#### log2
```
FUNCTION Test()
Called 2 times
...
```
### Expected behaviour
#### log1
```
FUNCTION Test()
Called 1 times
...
```
#### log2
```
FUNCTION Test()
Called 1 times
...
```
Diffstat (limited to 'runtime/lua/vim/lsp/protocol.lua')
0 files changed, 0 insertions, 0 deletions