config: clarify memory ownership in git_config_string()
The out parameter of `git_config_string()` is a `const char **` even though we transfer ownership of memory to the caller. This is quite misleading and has led to many memory leaks all over the place. Adapt the parameter to instead be `char **`. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
83024d98f7
commit
1b261c20ed
@ -100,7 +100,7 @@ static struct strategy all_strategy[] = {
|
||||
{ "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
|
||||
};
|
||||
|
||||
static const char *pull_twohead, *pull_octopus;
|
||||
static char *pull_twohead, *pull_octopus;
|
||||
|
||||
enum ff_type {
|
||||
FF_NO,
|
||||
@ -110,7 +110,7 @@ enum ff_type {
|
||||
|
||||
static enum ff_type fast_forward = FF_ALLOW;
|
||||
|
||||
static const char *cleanup_arg;
|
||||
static char *cleanup_arg;
|
||||
static enum commit_msg_cleanup_mode cleanup_mode;
|
||||
|
||||
static int option_parse_message(const struct option *opt,
|
||||
|
Reference in New Issue
Block a user