char const CC_HINT(used) *__lsan_default_suppressions(void)
{
return
+ "leak:CRYPTO_THREAD_lock_new\n", /* OpenSSL init leak - reported by heaptrack */
#if defined(__APPLE__)
"leak:getaddrinfo\n"
"leak:*gmtsub*\n"
/* Perl >= 5.32.0 - Upstream bug, tracked by https://github.com/Perl/perl5/issues/18108 */
"leak:perl_construct"
#elif defined(__linux__)
- "leak:kqueue",
- "leak:*getpwnam_r*", /* libc startup leak - reported by heaptrack */
- "leak:initgroups", /* libc startup leak - reported by heaptrack */
- "leak:CRYPTO_THREAD_lock_new", /* OpenSSL init leak - reported by heaptrack */
- "leak:_dl_init", /* dl startup leak - reported by heaptrack */
+ "leak:kqueue\n",
+ "leak:*getpwnam_r*\n", /* libc startup leak - reported by heaptrack */
+ "leak:initgroups\n", /* libc startup leak - reported by heaptrack */
+ "leak:_dl_init", /* dl startup leak - reported by heaptrack */
#elif defined(__FreeBSD__)
NULL
#endif