Exclude leaks in SSLHandshake

This commit is contained in:
Łukasz Langa
2025-12-11 17:05:48 +01:00
parent a44b3257ba
commit ed1f2f7eb1

View File

@@ -2,5 +2,7 @@
export MallocStackLogging=1
export MallocScribble=1
export MallocLogFile=/dev/null
export CLAR_AT_EXIT="leaks -quiet \$PPID"
# Exclude known Apple Security framework leak in CryptKit::FEEKeyInfoProvider
# which occurs during SSL/TLS handshakes and is not in libgit2's control
export CLAR_AT_EXIT="leaks -quiet -exclude SSLHandshake \$PPID"
exec "$@"