diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-09-15 13:15:28 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-09-15 13:15:28 -0700 |
commit | 44257f7b5244e8adea4cedc4159d8083f1c213c1 (patch) | |
tree | 1664a0fb0f486ffe11dbf599080a57c287d5e6b4 /builtin/hash-object.c | |
parent | 3d141d87897676b81990fb47cdd75a562dd5dad9 (diff) | |
parent | 92a5d1c9b446839a748a465518e5926451b63460 (diff) | |
download | git-44257f7b5244e8adea4cedc4159d8083f1c213c1.tar.gz |
Merge branch 'jc/prefix-filename-allocates'
Leakfix.
* jc/prefix-filename-allocates:
hash-object: prefix_filename() returns allocated memory these days
Diffstat (limited to 'builtin/hash-object.c')
-rw-r--r-- | builtin/hash-object.c | 2 |
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); |