diff options
author | Peter Andersson <[email protected]> | 2016-07-20 14:12:24 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2016-07-20 14:20:07 +0200 |
commit | bc544c51d84bfd61f3dafc5048e86cea02641b43 (patch) | |
tree | 0c34ba9f898ec3d2269c7eff95f4995d69e406a1 /lib/debugger/src/dbg_wx_view.erl | |
parent | 7c10598da79e28c9b802029d94269cbebba2f21e (diff) | |
download | otp-bc544c51d84bfd61f3dafc5048e86cea02641b43.tar.gz otp-bc544c51d84bfd61f3dafc5048e86cea02641b43.tar.bz2 otp-bc544c51d84bfd61f3dafc5048e86cea02641b43.zip |
Make sure exit in non-interpreted code doesn't crash the debugger
Diffstat (limited to 'lib/debugger/src/dbg_wx_view.erl')
-rw-r--r-- | lib/debugger/src/dbg_wx_view.erl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/debugger/src/dbg_wx_view.erl b/lib/debugger/src/dbg_wx_view.erl index 91fc0d08cb..86d009238f 100644 --- a/lib/debugger/src/dbg_wx_view.erl +++ b/lib/debugger/src/dbg_wx_view.erl @@ -263,7 +263,11 @@ shortcut(_) -> false. gui_load_module(Win, Mod) -> dbg_wx_trace_win:display(Win,{text, "Loading module..."}), - {ok, Contents} = dbg_iserver:call({raw_contents, Mod, any}), - Win2 = dbg_wx_trace_win:show_code(Win, Mod, Contents), - dbg_wx_trace_win:display(Win,{text, ""}), - Win2. + case dbg_iserver:call({raw_contents, Mod, any}) of + {ok, Contents} -> + Win2 = dbg_wx_trace_win:show_code(Win, Mod, Contents), + dbg_wx_trace_win:display(Win,{text, ""}), + Win2; + not_found -> + dbg_wx_trace_win:show_no_code(Win) + end. |