Johannes Schindelin <johannes.schindelin@xxxxxx> writes: > Coverity reported a memory leak in this function. However, it can only > be called once, as setup_git_directory() changes global state and hence > is not reentrant. > > Mark the variable as static to indicate that this is a singleton. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > --- Does something different from what is explained above. Rebase gotcha? > setup.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/setup.c b/setup.c > index 0320a9ad14c..12efca85a41 100644 > --- a/setup.c > +++ b/setup.c > @@ -703,11 +703,16 @@ static const char *setup_discovered_git_dir(const char *gitdir, > > /* --work-tree is set without --git-dir; use discovered one */ > if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { > + char *p = NULL; > + const char *ret; > + > if (offset != cwd->len && !is_absolute_path(gitdir)) > - gitdir = real_pathdup(gitdir, 1); > + gitdir = p = real_pathdup(gitdir, 1); > if (chdir(cwd->buf)) > die_errno("Could not come back to cwd"); > - return setup_explicit_git_dir(gitdir, cwd, nongit_ok); > + ret = setup_explicit_git_dir(gitdir, cwd, nongit_ok); > + free(p); > + return ret; > } > > /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */