mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Do not recycle filters list as it is not creating new filter instances
just reusing it.
This commit is contained in:
@@ -590,13 +590,14 @@ namespace DiscImageChef.ImagePlugins
|
||||
else
|
||||
DicConsole.ErrorWriteLine("BlindWrite5 image ends after expected position. Probably new version with different data. Errors may occur.");
|
||||
|
||||
FiltersList filtersList = new FiltersList();
|
||||
FiltersList filtersList;
|
||||
|
||||
filePaths = new List<DataFileCharacteristics>();
|
||||
foreach(BW5_DataFile dataFile in dataFiles)
|
||||
{
|
||||
DataFileCharacteristics chars = new DataFileCharacteristics();
|
||||
string path = Path.Combine(dataPath, dataFile.filename);
|
||||
filtersList = new FiltersList();
|
||||
|
||||
if(filtersList.GetFilter(Path.Combine(imageFilter.GetParentFolder(), path)) != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user