From: Christian Brabandt Date: Wed, 10 Sep 2025 07:59:38 +0000 (-0400) Subject: patch 9.1.1749: leaking memory in cs_find_common() X-Git-Tag: v9.1.1749^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6659f6e610efe879225f894c19deaa5c91f6b37;p=thirdparty%2Fvim.git patch 9.1.1749: leaking memory in cs_find_common() Problem: leaking memory in cs_find_common() (after v9.1.1746) Solution: Also free nummatches before returning closes: #18258 Signed-off-by: Christian Brabandt --- diff --git a/src/if_cscope.c b/src/if_cscope.c index e571dd754d..8188885d45 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1233,7 +1233,10 @@ cs_find_common( win_T *wp = NULL; if (tmp == NULL) + { + vim_free(nummatches); return FALSE; + } f = mch_fopen((char *)tmp, "w"); if (f == NULL) diff --git a/src/version.c b/src/version.c index 85ccf3fa84..10958a5091 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1749, /**/ 1748, /**/