mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
refactor(memory): use builtin strcat() instead of STRCAT()
The latter was mostly relevant with the past char_u madness. NOTE: STRCAT also functioned as a counterfeit "NOLINT" for clint apparently. But NOLINT-ing every usecase is just the same as disabling the check entirely.
This commit is contained in:
@@ -451,7 +451,7 @@ void *vim_findfile_init(char *path, char *filename, char *stopdirs, int level, i
|
||||
STRCPY(buf, ff_expand_buffer);
|
||||
STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
|
||||
if (os_isdir(buf)) {
|
||||
STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
|
||||
strcat(ff_expand_buffer, search_ctx->ffsc_fix_path);
|
||||
add_pathsep(ff_expand_buffer);
|
||||
} else {
|
||||
char *p = path_tail(search_ctx->ffsc_fix_path);
|
||||
@@ -479,7 +479,7 @@ void *vim_findfile_init(char *path, char *filename, char *stopdirs, int level, i
|
||||
+ strlen(search_ctx->ffsc_fix_path + len)
|
||||
+ 1);
|
||||
STRCPY(temp, search_ctx->ffsc_fix_path + len);
|
||||
STRCAT(temp, search_ctx->ffsc_wc_path);
|
||||
strcat(temp, search_ctx->ffsc_wc_path);
|
||||
xfree(search_ctx->ffsc_wc_path);
|
||||
xfree(wc_path);
|
||||
search_ctx->ffsc_wc_path = temp;
|
||||
@@ -681,7 +681,7 @@ char *vim_findfile(void *search_ctx_arg)
|
||||
ff_free_stack_element(stackp);
|
||||
goto fail;
|
||||
}
|
||||
STRCAT(file_path, stackp->ffs_fix_path);
|
||||
strcat(file_path, stackp->ffs_fix_path);
|
||||
if (!add_pathsep(file_path)) {
|
||||
ff_free_stack_element(stackp);
|
||||
goto fail;
|
||||
@@ -781,7 +781,7 @@ char *vim_findfile(void *search_ctx_arg)
|
||||
ff_free_stack_element(stackp);
|
||||
goto fail;
|
||||
}
|
||||
STRCAT(file_path, search_ctx->ffsc_file_to_search);
|
||||
strcat(file_path, search_ctx->ffsc_file_to_search);
|
||||
|
||||
// Try without extra suffix and then with suffixes
|
||||
// from 'suffixesadd'.
|
||||
@@ -922,7 +922,7 @@ char *vim_findfile(void *search_ctx_arg)
|
||||
if (!add_pathsep(file_path)) {
|
||||
goto fail;
|
||||
}
|
||||
STRCAT(file_path, search_ctx->ffsc_fix_path);
|
||||
strcat(file_path, search_ctx->ffsc_fix_path);
|
||||
|
||||
// create a new stack entry
|
||||
sptr = ff_create_stack_element(file_path,
|
||||
|
Reference in New Issue
Block a user