setup: free old value before setting `work_tree`

Before assigning to `data->work_tree` in `read_worktree_config()`, free
any value we might already have picked up, so that we do not leak it.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Martin Ågren 2019-01-22 22:45:47 +01:00 коммит произвёл Junio C Hamano
Родитель ecbdaf0899
Коммит 13019979b8
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -411,6 +411,7 @@ static int read_worktree_config(const char *var, const char *value, void *vdata)
} else if (strcmp(var, "core.worktree") == 0) {
if (!value)
return config_error_nonbool(var);
free(data->work_tree);
data->work_tree = xstrdup(value);
}
return 0;