fix incorrect advance logic on invalid page reads in cached process memory reading path

This commit is contained in:
Ryan Fleury
2024-11-14 13:08:17 -08:00
parent 8994cb04bc
commit 95fe497056
2 changed files with 9 additions and 5 deletions
+5 -1
View File
@@ -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);
}