[Playlist/Metadata] Prevent a race condition

Prevent a race condition with deleting playlist entries while their
metadata is still being loaded by the player.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
swiftingly
Christopher Snowhill 2022-06-14 21:27:51 -07:00
parent 9d558a89ab
commit 6c7a3e581c
1 changed files with 6 additions and 2 deletions

View File

@ -559,6 +559,8 @@ static inline void dispatch_sync_reentrant(dispatch_queue_t queue, dispatch_bloc
progress += progressstep;
[weakLock unlock];
if(weakPe.deleted) return;
DLog(@"Loading metadata for %@", weakPe.URL);
NSDictionary *entryProperties = [AudioPropertiesReader propertiesForURL:weakPe.URL];
@ -590,8 +592,10 @@ static inline void dispatch_sync_reentrant(dispatch_queue_t queue, dispatch_bloc
__block PlaylistEntry *weakPe = [outArray objectAtIndex:i];
__block NSDictionary *entryInfo = [outArray objectAtIndex:i + 1];
dispatch_sync_reentrant(dispatch_get_main_queue(), ^{
if(!weakPe.deleted) {
[weakPe setMetadata:entryInfo];
[store trackUpdate:weakPe];
}
progress += progressstep;
[self setProgressBarStatus:progress];
});