From f6659f6e610efe879225f894c19deaa5c91f6b37 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Wed, 10 Sep 2025 03:59:38 -0400 Subject: [PATCH] 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 --- src/if_cscope.c | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) 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, /**/