Development/scripts: Update stack tool

The tool was broken for ASAN traces. Add a missing key to the
dictionary.

Bug: 24133462
Change-Id: I6e5b60441c9c602cd1381c1cb32947a1425c7069
This commit is contained in:
Andreas Gampe
2015-09-17 11:44:21 -07:00
parent 9e2e8392ae
commit 57acd5f7da

View File

@@ -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}