You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blizzard now has duplicate entries in the Install manifest however I'm not sure if this is a bug their end or not. I assume that all identical files should be merged and have the correct tags set. This has been seen on BlizzardError.exe for x64 and arm64. If this is not a bug then this need supporting which leads onto issue 2...
Currently Install file entries are stored in a Dictionary with the filename as key, this was done for speed of searching by filename. However there may be a situation where multiple versions of the same named file exist (more likely with Win ARM support now), which at present, only the first entry is stored. This needs to be converted to either a multimap, a list or stored by CKey instead then methods updated accordingly.
The text was updated successfully, but these errors were encountered:
Identified two issues:
Blizzard now has duplicate entries in the Install manifest however I'm not sure if this is a bug their end or not. I assume that all identical files should be merged and have the correct tags set. This has been seen on
BlizzardError.exe
for x64 and arm64. If this is not a bug then this need supporting which leads onto issue 2...Currently Install file entries are stored in a Dictionary with the filename as key, this was done for speed of searching by filename. However there may be a situation where multiple versions of the same named file exist (more likely with Win ARM support now), which at present, only the first entry is stored. This needs to be converted to either a multimap, a list or stored by CKey instead then methods updated accordingly.
The text was updated successfully, but these errors were encountered: