From 8149f4d6abd4df27d07c047b133451a1364f8d9a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 30 Nov 2024 09:10:29 +0900 Subject: [PATCH] [Bug #20910] dtrace related symbols are not considered leaked --- tool/leaked-globals | 1 + 1 file changed, 1 insertion(+) diff --git a/tool/leaked-globals b/tool/leaked-globals index 05ce02658b..6118cd56e8 100755 --- a/tool/leaked-globals +++ b/tool/leaked-globals @@ -90,6 +90,7 @@ Pipe.new(NM + ARGV).each do |line| next if !so and n.start_with?("___asan_") next if !so and n.start_with?("__odr_asan_") next if !so and n.start_with?("__retguard_") + next if !so and n.start_with?("__dtrace") case n when /\A(?:Init_|InitVM_|pm_|[Oo]nig|dln_|coroutine_)/ next