summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-09-15 13:15:28 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-09-15 13:15:28 -0700
commit44257f7b5244e8adea4cedc4159d8083f1c213c1 (patch)
tree1664a0fb0f486ffe11dbf599080a57c287d5e6b4
parentMerge branch 'rs/range-diff-avoid-segfault-with-I' (diff)
parenthash-object: prefix_filename() returns allocated memory these days (diff)
downloadtgif-44257f7b5244e8adea4cedc4159d8083f1c213c1.tar.xz
Merge branch 'jc/prefix-filename-allocates'
Leakfix. * jc/prefix-filename-allocates: hash-object: prefix_filename() returns allocated memory these days
-rw-r--r--builtin/hash-object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/hash-object.c b/builtin/hash-object.c
index 2e6e2ddd0c..c7b3ad74c6 100644
--- a/builtin/hash-object.c
+++ b/builtin/hash-object.c
@@ -115,7 +115,7 @@ int cmd_hash_object(int argc, const char **argv, const char *prefix)
prefix = setup_git_directory_gently(&nongit);
if (vpath && prefix)
- vpath = xstrdup(prefix_filename(prefix, vpath));
+ vpath = prefix_filename(prefix, vpath);
git_config(git_default_config, NULL);