Skip to content

Commit 8635ca4

Browse files
Make sure to not mutate a dictionary while we're enumerating it. (project-chip#26493)
1 parent bf14d4a commit 8635ca4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/Darwin/BleConnectionDelegateImpl.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ - (void)removePeripheralFromCache:(CBPeripheral *)peripheral
698698

699699
- (void)removePeripheralsFromCache
700700
{
701-
for (CBPeripheral * peripheral in _cachedPeripherals) {
701+
for (CBPeripheral * peripheral in [_cachedPeripherals allValues]) {
702702
[self removePeripheralFromCache:peripheral];
703703
}
704704
}

0 commit comments

Comments
 (0)