Fix crash when stack trace not loaded
Still doesn't address the issue though
This commit is contained in:
parent
e0180a4b88
commit
2c89107349
1 changed files with 4 additions and 1 deletions
|
@ -455,7 +455,10 @@ impl EditorView {
|
|||
// if we have a frame, and the frame path matches document
|
||||
if let (Some(frame), Some(thread_id)) = (debugger.active_frame, debugger.thread_id)
|
||||
{
|
||||
let frame = debugger.stack_frames[&thread_id].get(frame); // TODO: drop the clone..
|
||||
let frame = debugger
|
||||
.stack_frames
|
||||
.get(&thread_id)
|
||||
.and_then(|bt| bt.get(frame)); // TODO: drop the clone..
|
||||
if let Some(StackFrame {
|
||||
source: Some(source),
|
||||
..
|
||||
|
|
Loading…
Add table
Reference in a new issue