mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Check title keys resume for null when not a DVD Video (#827)
This commit is contained in:
committed by
GitHub
parent
aa554f563c
commit
d081edc179
@@ -131,14 +131,14 @@ partial class Dump
|
||||
0, 0, 0, 0, 0
|
||||
}, i + j, SectorTagType.DvdTitleKeyDecrypted);
|
||||
|
||||
_resume.MissingTitleKeys.Remove(i + j);
|
||||
_resume.MissingTitleKeys?.Remove(i + j);
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
CSS.DecryptTitleKey(discKey, key, out tmpBuf);
|
||||
outputFormat.WriteSectorTag(tmpBuf, i + j, SectorTagType.DvdTitleKeyDecrypted);
|
||||
_resume.MissingTitleKeys.Remove(i + j);
|
||||
_resume.MissingTitleKeys?.Remove(i + j);
|
||||
|
||||
if(_storeEncrypted)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user