From: Johannes Schindelin Date: Thu, 4 May 2017 13:55:24 +0000 (+0200) Subject: mingw: avoid memory leak when splitting PATH X-Git-Tag: v2.13.1~27^2~25 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1a845a2c88e5b72acce33c9719ec36fcd0f9c877 mingw: avoid memory leak when splitting PATH In the (admittedly, concocted) case that PATH consists only of path delimiters, we would leak the duplicated string. Reported by Coverity. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/compat/mingw.c b/compat/mingw.c index 3fbfda5978..fe0e3ccd24 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -961,8 +961,10 @@ static char **get_path_split(void) ++n; } } - if (!n) + if (!n) { + free(envpath); return NULL; + } ALLOC_ARRAY(path, n + 1); p = envpath;