Some memory was allocated for a new path but not freed after the path was used. Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx> --- git.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/git.c b/git.c index 1d00111..335f405 100644 --- a/git.c +++ b/git.c @@ -36,6 +36,8 @@ static void prepend_to_path(const char * memcpy(path + len + 1, old_path, path_len - len); setenv("PATH", path, 1); + + free(path); } static int handle_options(const char*** argv, int* argc) -- 1.4.2.g269a-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html