summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2024-05-20 22:22:00 +0200
committerJunio C Hamano <gitster@pobox.com>2024-05-21 21:33:08 +0200
commitee052533bb81aca6f94c0961222bed2a19789dae (patch)
tree299ff53012e520aa349d109fc91423d14cdcbb90
parentci: stop installing "gcc-13" for osx-gcc (diff)
downloadgit-ee052533bb81aca6f94c0961222bed2a19789dae.tar.xz
git-ee052533bb81aca6f94c0961222bed2a19789dae.zip
hook: plug a new memory leak
In 8db1e8743c0 (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>
-rw-r--r--hook.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hook.c b/hook.c
index 632b537b99..fc974cee1d 100644
--- a/hook.c
+++ b/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);