From 035bb8e062dc88e848028048b5805e4c39bcdc47 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 12 Dec 2024 06:44:24 +0100 Subject: pkg/report: fix parsing of HWASAN reports Currently we mis-parse all of them, and attribute the bug to HWASAN. --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index d02a25c46..ed12e3130 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1106,6 +1106,7 @@ var linuxStackParams = &stackParams{ "__sanitizer", "__asan", "kasan", + "hwasan", "__msan", "kmsan", "kcsan_setup_watchpoint", -- cgit mrf-deployment