Fix a memory leak in config_parse.

This commit is contained in:
Arthur Schreiber 2014-01-13 22:12:17 +01:00
parent 1234738e06
commit a8e4cb11fd

View File

@ -1072,8 +1072,10 @@ static int config_parse(diskfile_backend *cfg_file, struct reader *reader, git_c
git_buf_printf(&buf, "%s.%s", current_section, var_name); git_buf_printf(&buf, "%s.%s", current_section, var_name);
git__free(var_name); git__free(var_name);
if (git_buf_oom(&buf)) if (git_buf_oom(&buf)) {
git__free(var_value);
return -1; return -1;
}
var->entry->name = git_buf_detach(&buf); var->entry->name = git_buf_detach(&buf);
var->entry->value = var_value; var->entry->value = var_value;