mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 11:43:00 +00:00
Merge pull request #8333 from rlnilsen/contentscannerfalsepositives
Fix content scanner creating false positive playlist entries
This commit is contained in:
commit
2cd845469c
@ -732,6 +732,9 @@ static int database_info_list_iterate_end_no_match(
|
||||
if (db_state->crc != 0)
|
||||
db_state->crc = 0;
|
||||
|
||||
if (db_state->archive_crc != 0)
|
||||
db_state->archive_crc = 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -857,6 +860,7 @@ static int database_info_list_iterate_found_match(
|
||||
|
||||
db_state->info = NULL;
|
||||
db_state->crc = 0;
|
||||
db_state->archive_crc = 0;
|
||||
|
||||
free(entry_path_str);
|
||||
free(db_playlist_path);
|
||||
|
Loading…
x
Reference in New Issue
Block a user