Merge pull request #7919 from JosJuice/disc-extractor-cert-h3

DiscExtractor: Fix extracting certificate chain and H3 hashes
This commit is contained in:
JosJuice 2019-03-22 17:44:47 +01:00 committed by GitHub
commit 0b3385ac1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ bool ExportCertificateChain(const Volume& volume, const Partition& partition,
if (!size || !offset)
return false;
return ExportData(volume, PARTITION_NONE, *offset, *size, export_filename);
return ExportData(volume, PARTITION_NONE, partition.offset + *offset, *size, export_filename);
}
bool ExportH3Hashes(const Volume& volume, const Partition& partition,
@ -219,7 +219,7 @@ bool ExportH3Hashes(const Volume& volume, const Partition& partition,
if (!offset)
return false;
return ExportData(volume, PARTITION_NONE, *offset, 0x18000, export_filename);
return ExportData(volume, PARTITION_NONE, partition.offset + *offset, 0x18000, export_filename);
}
bool ExportHeader(const Volume& volume, const Partition& partition,