# HG changeset patch # User Bram Moolenaar # Date 1279573887 -7200 # Node ID f4440cdd59ae504feb308127b73766ae82c57a7e # Parent 467e100ee6ab572827981221fb035a9209731f1c Fixed: crash with ":find " completion, using uninitialized count. diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -8550,7 +8550,7 @@ expand_wildcards_eval(pat, num_file, fil /* * Expand wildcards. Calls gen_expand_wildcards() and removes files matching * 'wildignore'. - * Returns OK or FAIL. + * Returns OK or FAIL. When FAIL then "num_file" won't be set. */ int expand_wildcards(num_pat, pat, num_file, file, flags) @@ -8568,7 +8568,7 @@ expand_wildcards(num_pat, pat, num_file, retval = gen_expand_wildcards(num_pat, pat, num_file, file, flags); /* When keeping all matches, return here */ - if (flags & EW_KEEPALL) + if ((flags & EW_KEEPALL) || retval == FAIL) return retval; #ifdef FEAT_WILDIGN