Skip to content
Snippets Groups Projects
Commit cdd4b633 authored by Claudio Cambra's avatar Claudio Cambra Committed by Felix Paul Kühne
Browse files

macosx: Better safeguard against invalid indices in abstract grouping source number of rows


Signed-off-by: default avatarClaudio Cambra <developer@claudiocambra.com>
parent 3a074cec
No related branches found
No related tags found
1 merge request!6525macosx: Prevent OOB crash when backing array is empty in abstract grouping data source
Pipeline #545397 passed with stage
in 15 minutes and 49 seconds
......@@ -72,7 +72,10 @@
}
const NSInteger selectedMasterRow = self.masterTableView.selectedRow;
if (tableView == self.detailTableView && self.backingArray.count > 0 && selectedMasterRow > -1) {
const NSInteger backingItemsCount = self.backingArray.count;
const BOOL selectedRowIsValid = selectedMasterRow > -1 && selectedMasterRow < backingItemsCount;
if (tableView == self.detailTableView && backingItemsCount > 0 && selectedRowIsValid) {
return self.backingArray[selectedMasterRow].mediaItems.count;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment