diff options
Diffstat (limited to 'src/tag.c')
-rw-r--r-- | src/tag.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1990,8 +1990,7 @@ findtag_end: match_count = 0; if (match_count > 0) - matches = (char_u **)lalloc((long_u)(match_count * sizeof(char_u *)), - TRUE); + matches = xmalloc(match_count * sizeof(char_u *)); else matches = NULL; match_count = 0; |