From 53e8f3ffdf80dbd24a60adb51f8f21982fd41c57 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Sun, 17 Apr 2022 21:36:37 +0100 Subject: [PATCH] patch 8.2.4779: lsan suppression is too version specific Problem: lsan suppression is too version specific. Solution: Leave out the version number. (Christian Brabandt, closes #10214) --- src/testdir/lsan-suppress.txt | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/testdir/lsan-suppress.txt b/src/testdir/lsan-suppress.txt index c0d906150..8e1451e7d 100644 --- a/src/testdir/lsan-suppress.txt +++ b/src/testdir/lsan-suppress.txt @@ -4,8 +4,8 @@ leak:libXt.so.6 leak:libcairo.so.2 leak:libfontconfig.so.1 leak:libglib-2.0.so.0 -leak:libtinfo.so.5 -leak:libtinfo.so.6 +# Matches leaks from libtinfo.so.5 and .6 +leak:libtinfo.so # Suppress leaks from other language libraries. leak:libperl.so.* leak:libpython*.so.* diff --git a/src/version.c b/src/version.c index b30b5bb9b..efc010432 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4779, /**/ 4778, /**/ -- 2.50.0