MT#61822 fix possible uninitialised value

Change-Id: I8054de9d9cb0e1abe267f5878c2519c2addce9e8
Warned-by: Coverity
pull/1907/head
Richard Fuchs 3 months ago
parent 048d745dfe
commit 9da75efc8a

@ -2729,7 +2729,7 @@ static void media_player_expire_files(void) {
str_list *next;
for (__auto_type l = media_player_media_files_names.head; l; l = next) {
next = l->next;
g_auto(str) name;
g_auto(str) name = STR_NULL;
{
LOCK(&media_player_media_files_lock);
__auto_type fo = t_hash_table_lookup(media_player_media_files, l->data);

Loading…
Cancel
Save