diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -642,7 +642,7 @@ frame_regex = re.compile(r'^(\d+)\s+' # id r'(.+?)\s+' # img_name r'(?:' +version+ r'\s+)?' # img_version - r'(0x[0-9a-fA-F]{7,})' # addr (7 chars or more) + r'(0x[0-9a-fA-F]{4,})' # addr (4 chars or more) r' +(.*)' # offs ) null_frame_regex = re.compile(r'^\d+\s+\?\?\?\s+0{7,} +')