mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
hook: plug a new memory leak
In 8db1e8743c
(clone: prevent hooks from running during a clone,
2024-03-28), I introduced an inadvertent memory leak that was
unfortunately not caught before v2.45.1 was released. Here is a fix.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
d17d18f85a
commit
ee052533bb
1 changed files with 3 additions and 1 deletions
4
hook.c
4
hook.c
|
@ -18,8 +18,10 @@ static int identical_to_template_hook(const char *name, const char *path)
|
|||
found_template_hook = access(template_path.buf, X_OK) >= 0;
|
||||
}
|
||||
#endif
|
||||
if (!found_template_hook)
|
||||
if (!found_template_hook) {
|
||||
strbuf_release(&template_path);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ret = do_files_match(template_path.buf, path);
|
||||
|
||||
|
|
Loading…
Reference in a new issue