Fixed an invalid index check (#2937)

This commit is contained in:
staz 2022-05-07 16:59:46 +05:00 committed by Anton Kochkov
parent 6fca09d313
commit 34b1f01a86

View File

@ -71,7 +71,7 @@ void GlibcHeapWidget::updateArenas()
} }
// check if arenas reduced or invalid index and restore the previously selected arena // check if arenas reduced or invalid index and restore the previously selected arena
if (arenaSelectorView->count() < currentIndex || currentIndex == -1) { if (arenaSelectorView->count() <= currentIndex || currentIndex == -1) {
currentIndex = 0; currentIndex = 0;
} }
arenaSelectorView->setCurrentIndex(currentIndex); arenaSelectorView->setCurrentIndex(currentIndex);