0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

Fix compile issue

M  src/cmdexpand.c
This commit is contained in:
Girish Palya 2025-07-04 21:11:45 +02:00
parent a9f540a8c6
commit f4e301ec35

View File

@ -4730,9 +4730,12 @@ concat_pattern_with_buffer_match(
}
match[pat_len + match_len] = NUL;
return match;
#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
cleanup:
vim_free(match);
return NULL;
#endif
}
/*