# HG changeset patch # User Bram Moolenaar # Date 1548790214 -3600 # Node ID 0a4dfbb312ceca2117c15ba8293d8a43728b69aa # Parent 6346be2142503228b8115fe8d9419e8b8b38c00a patch 8.1.0843: memory leak when running "make test_cd" commit https://github.com/vim/vim/commit/e0de2164f62a1736cdc64dbf804b77db8af90c10 Author: Bram Moolenaar Date: Tue Jan 29 20:17:28 2019 +0100 patch 8.1.0843: memory leak when running "make test_cd" Problem: Memory leak when running "make test_cd". Solution: Free the stack element when failing. (Dominique Pelle, closes #3877) diff --git a/src/misc2.c b/src/misc2.c --- a/src/misc2.c +++ b/src/misc2.c @@ -4657,7 +4657,10 @@ vim_findfile(void *search_ctx_arg) add_pathsep(file_path); } else + { + ff_free_stack_element(stackp); goto fail; + } } /* append the fix part of the search path */ @@ -4667,7 +4670,10 @@ vim_findfile(void *search_ctx_arg) add_pathsep(file_path); } else + { + ff_free_stack_element(stackp); goto fail; + } #ifdef FEAT_PATH_EXTRA rest_of_wildcards = stackp->ffs_wc_path; @@ -4687,7 +4693,10 @@ vim_findfile(void *search_ctx_arg) if (len + 1 < MAXPATHL) file_path[len++] = '*'; else + { + ff_free_stack_element(stackp); goto fail; + } } if (*p == 0) @@ -4718,7 +4727,10 @@ vim_findfile(void *search_ctx_arg) if (len + 1 < MAXPATHL) file_path[len++] = *rest_of_wildcards++; else + { + ff_free_stack_element(stackp); goto fail; + } file_path[len] = NUL; if (vim_ispathsep(*rest_of_wildcards)) @@ -4787,7 +4799,10 @@ vim_findfile(void *search_ctx_arg) STRCAT(file_path, search_ctx->ffsc_file_to_search); } else + { + ff_free_stack_element(stackp); goto fail; + } /* * Try without extra suffix and then with suffixes diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 843, +/**/ 842, /**/ 841,