Skip to content

Commit

Permalink
Merge pull request #18543 from hrydgard/minor-crash-fix
Browse files Browse the repository at this point in the history
Minor debugger-related crash fixes
  • Loading branch information
hrydgard committed Dec 14, 2023
2 parents ebaebf5 + 15c0bb1 commit 6da23a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Core/Debugger/MemBlockInfo.cpp
Expand Up @@ -288,7 +288,12 @@ void MemSlabMap::Clear() {

MemSlabMap::Slab *MemSlabMap::FindSlab(uint32_t addr) {
// Jump ahead using our index.
Slab *slab = heads_[addr / SLICE_SIZE];
size_t slabIndex = addr / SLICE_SIZE;
if (slabIndex >= heads_.size()) {
// Shouldn't happen, but apparently can.
return nullptr;
}
Slab *slab = heads_[slabIndex];
// We often move forward, so check the last find.
if (lastFind_->start > slab->start && lastFind_->start <= addr)
slab = lastFind_;
Expand Down
4 changes: 3 additions & 1 deletion Windows/Debugger/Debugger_Lists.cpp
Expand Up @@ -672,7 +672,9 @@ bool CtrlStackTraceView::WindowMessage(UINT msg, WPARAM wParam, LPARAM lParam, L

void CtrlStackTraceView::GetColumnText(wchar_t* dest, int row, int col)
{
if (row < 0 || row >= (int)frames.size()) {
// We should have emptied the list if g_symbolMap is nullptr, but apparently we don't,
// so let's have a sanity check here.
if (row < 0 || row >= (int)frames.size() || !g_symbolMap) {
return;
}

Expand Down

0 comments on commit 6da23a2

Please sign in to comment.