`lldb.frame` is a Python convenience variable that resolves to `None` when the process is running (no selected frame), potentially causing an `AttributeError` before the run locker check is ever reached. Use `lldb.target` instead, which is always valid and properly exercises the run locker path. Fixes #193787