From 57acd5f7dae2f502848a748d245d95a085341a47 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Thu, 17 Sep 2015 11:44:21 -0700 Subject: [PATCH] Development/scripts: Update stack tool The tool was broken for ASAN traces. Add a missing key to the dictionary. Bug: 24133462 Change-Id: I6e5b60441c9c602cd1381c1cb32947a1425c7069 --- scripts/stack_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/stack_core.py b/scripts/stack_core.py index 69c4e1f6f..963f7d5c1 100755 --- a/scripts/stack_core.py +++ b/scripts/stack_core.py @@ -195,6 +195,7 @@ class TraceConverter: match = self.sanitizer_trace_line.match(line) return {"frame": match.group("frame"), "offset": match.group("offset"), + "so_offset": None, "dso": match.group("dso"), "symbol_present": False, "symbol_name": None}