Commit 8ecc5ae5 by Carlos Martín Nieto

git_config_set_int: use the right buffer

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent e21881d1
......@@ -222,12 +222,11 @@ int git_config_set_int(git_config *cfg, const char *name, int value)
buf_len = ret + 1;
help_buf = git__malloc(buf_len);
snprintf(help_buf, buf_len, "%d", value);
}
ret = config_set(cfg, name, str_value);
if (help_buf != NULL)
ret = config_set(cfg, name, help_buf);
free(help_buf);
} else {
ret = config_set(cfg, name, str_value);
}
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment