From 0caea90be0e565a923b69df7b32c13cbcf892d6d Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Tue, 5 Sep 2006 08:22:16 +0200 Subject: [PATCH] Fix memory leak in prepend_to_path (git.c). Some memory was allocated for a new path but not freed after the path was used. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- git.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git.c b/git.c index 1d00111819..335f405c20 100644 --- a/git.c +++ b/git.c @@ -36,6 +36,8 @@ static void prepend_to_path(const char *dir, int len) memcpy(path + len + 1, old_path, path_len - len); setenv("PATH", path, 1); + + free(path); } static int handle_options(const char*** argv, int* argc) -- 2.11.4.GIT