From cac173bf1723a401b0c8fe53c29da48876cab3ab Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Tue, 19 Jan 2021 14:17:26 +0100 Subject: [PATCH] tombstoned: fault address is also not unique due to ASLR old-commit-hash: 5812e09f23b0a0644a9130195ef813a97baa8baa --- selfdrive/tombstoned.py | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/tombstoned.py b/selfdrive/tombstoned.py index 74e514d2ab..8d23ed022d 100755 --- a/selfdrive/tombstoned.py +++ b/selfdrive/tombstoned.py @@ -156,6 +156,7 @@ def report_tombstone_apport(fn, client): crash_function = stacktrace_s[1] # Remove arguments that can contain pointers to make sentry one-liner unique + crash_function = " ".join(crash_function.split(' ')[2:]) crash_function = re.sub(r'\(.*?\)', '', crash_function) contents = stacktrace + "\n\n" + contents