# HG changeset patch # User Bram Moolenaar # Date 1650228302 -7200 # Node ID 4470cbddc013c744ee5135a3e692b1125704ae7f # Parent 3585f198e636b9cc6eb65ae4dc29e771f377e32a patch 8.2.4779: lsan suppression is too version specific Commit: https://github.com/vim/vim/commit/53e8f3ffdf80dbd24a60adb51f8f21982fd41c57 Author: Christian Brabandt Date: Sun Apr 17 21:36:37 2022 +0100 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 https://github.com/vim/vim/issues/10214) diff --git a/src/testdir/lsan-suppress.txt b/src/testdir/lsan-suppress.txt --- 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 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4779, +/**/ 4778, /**/ 4777,