1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-13 01:46:08 +02:00

Merge branch 'jc/unleak-core-excludesfile' into next

The variable that holds the value read from the core.excludefile
configuration variable used to leak, which has been corrected.

* jc/unleak-core-excludesfile:
  config: do not leak excludes_file
This commit is contained in:
Junio C Hamano 2024-04-10 10:09:16 -07:00
commit ffb0c01871
2 changed files with 4 additions and 1 deletions

View File

@ -1584,8 +1584,10 @@ static int git_default_core_config(const char *var, const char *value,
if (!strcmp(var, "core.askpass"))
return git_config_string(&askpass_program, var, value);
if (!strcmp(var, "core.excludesfile"))
if (!strcmp(var, "core.excludesfile")) {
free((char *)excludes_file);
return git_config_pathname(&excludes_file, var, value);
}
if (!strcmp(var, "core.whitespace")) {
if (!value)

View File

@ -5,6 +5,7 @@
test_description='git clean basic tests'
TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh
git config clean.requireForce no