From be3a4b6ca81c4e9dd3faa81dc01f53468ceed3ad Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Mon, 9 Jun 2014 00:02:50 -0300 Subject: 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 --- src/nvim/misc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/misc1.c') diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index f025ff7f65..c4b2977435 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -58,7 +58,7 @@ # include "misc1.c.generated.h" #endif /* All user names (for ~user completion as done by shell). */ -static garray_T ga_users; +static garray_T ga_users = GA_EMPTY_INIT_VALUE; /* * open_line: Add a new line below or above the current line. -- cgit