diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-06-09 00:02:50 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-30 03:57:50 -0400 |
commit | be3a4b6ca81c4e9dd3faa81dc01f53468ceed3ad (patch) | |
tree | 60615f7476a791a1e57deaafa414585bd802898f /src/nvim/ex_cmds2.c | |
parent | d723e7fd61d48b037a2b8360162efa1cddad64d2 (diff) | |
download | rneovim-be3a4b6ca81c4e9dd3faa81dc01f53468ceed3ad.tar.gz rneovim-be3a4b6ca81c4e9dd3faa81dc01f53468ceed3ad.tar.bz2 rneovim-be3a4b6ca81c4e9dd3faa81dc01f53468ceed3ad.zip |
ga_growsize should be >= 1
I know it could be 0 sometimes. Running the tests with
`assert(gap->ga_growsize > 0)` in ga_grow() crashes nvim while running the
tests.
- Add a setter for ga_growsize that checks whether the value passed is >=1 (log
in case it's not)
- log when ga_grow() tries to use a ga_growsize that's not >=1
- use GA_EMPTY_INIT_VALUE is many places
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 93822ebcfe..af6227d965 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -2790,7 +2790,7 @@ char_u *getsourceline(int c, void *cookie, int indent) /* Adjust the growsize to the current length to speed up * concatenating many lines. */ if (ga.ga_len > 400) { - ga.ga_growsize = (ga.ga_len > 8000) ? 8000 : ga.ga_len; + ga_set_growsize(&ga, (ga.ga_len > 8000) ? 8000 : ga.ga_len); } ga_concat(&ga, p + 1); } |