mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
Fixed an invalid index check (#2937)
This commit is contained in:
parent
6fca09d313
commit
34b1f01a86
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user