mirror of
https://github.com/libretro/RetroArch
synced 2025-04-11 00:44:20 +00:00
Fix content scanner creating false positive playlist entries that also have wrong label and crc32.
This commit is contained in:
parent
d46a60bb2b
commit
e71b6d6d23
@ -732,6 +732,9 @@ static int database_info_list_iterate_end_no_match(
|
|||||||
if (db_state->crc != 0)
|
if (db_state->crc != 0)
|
||||||
db_state->crc = 0;
|
db_state->crc = 0;
|
||||||
|
|
||||||
|
if (db_state->archive_crc != 0)
|
||||||
|
db_state->archive_crc = 0;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -857,6 +860,7 @@ static int database_info_list_iterate_found_match(
|
|||||||
|
|
||||||
db_state->info = NULL;
|
db_state->info = NULL;
|
||||||
db_state->crc = 0;
|
db_state->crc = 0;
|
||||||
|
db_state->archive_crc = 0;
|
||||||
|
|
||||||
free(entry_path_str);
|
free(entry_path_str);
|
||||||
free(db_playlist_path);
|
free(db_playlist_path);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user