Bug ID 32090
Summary DynamicLoaderPOSIXDyld crashes if an app dies before hitting the entry breakpoint
Product lldb
Version unspecified
Hardware PC
OS Linux
Status NEW
Severity enhancement
Priority P
Component All Bugs
Assignee lldb-dev@lists.llvm.org
Reporter labath@google.com
CC llvm-bugs@lists.llvm.org
This happens because it uses a one-shot breakpoint to do it's processing.
However, if the process dies before the breakpoint is hit, then it will be
triggered the next time the process is started. However, it will be still
referring to the old process (which is now gone). Hilarity ensues..