mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4732: duplicate code to free fuzzy matches
Problem: Duplicate code to free fuzzy matches. Solution: Bring back fuzmatch_str_free().
This commit is contained in:
@@ -2877,13 +2877,7 @@ ExpandGeneric(
|
||||
ga_clear_strings(&ga);
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
for (i = 0; i < ga.ga_len; ++i)
|
||||
{
|
||||
fuzmatch = &((fuzmatch_str_T *)ga.ga_data)[i];
|
||||
vim_free(fuzmatch->str);
|
||||
}
|
||||
ga_clear(&ga);
|
||||
fuzmatch_str_free(ga.ga_data, ga.ga_len);
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user