mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
fix incorrect advance logic on invalid page reads in cached process memory reading path
This commit is contained in:
@@ -3822,10 +3822,14 @@ rd_window_frame(RD_Window *ws)
|
||||
{
|
||||
ui_labelf("Symbols successfully loaded from %S", dbgi_key.path);
|
||||
}
|
||||
else
|
||||
else if(dbgi_key.path.size != 0)
|
||||
{
|
||||
ui_labelf("Symbols not found at %S", dbgi_key.path);
|
||||
}
|
||||
else if(dbgi_key.path.size == 0)
|
||||
{
|
||||
ui_labelf("Symbol information not found in module file");
|
||||
}
|
||||
di_scope_close(di_scope);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user