Danie1s / Tiercel

简单易用、功能丰富的纯 Swift 下载框架
MIT License
2.67k stars 388 forks source link

Debouncer类的workItems字典有可能会引起资源竞争导致Crash #184

Closed OldChicken closed 2 years ago

OldChicken commented 2 years ago

1660722709320 第128行的self?.workItems.removeValue(forKey: label)和130行的workItems[label] = workItem可能同时发生在两个线程,导致Crash。

Danie1s commented 2 years ago
image

这里是有加锁的

OldChicken commented 2 years ago
image

这里是有加锁的

是我下的版本太旧了,感谢。