mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
Merge branch 'develop' of github.com:sleuthkit/autopsy into 7624-consistentContentViewers
This commit is contained in:
commit
a8409593f2
@ -211,6 +211,11 @@ final class ExtractZoneIdentifier extends Extract {
|
||||
* @return true if possibleDownloadFile corresponds to zoneFile, false otherwise.
|
||||
*/
|
||||
private boolean isZoneFileMatch(AbstractFile zoneFile, String expectedDownloadFileName, AbstractFile possibleDownloadFile) {
|
||||
|
||||
if (zoneFile == null || possibleDownloadFile == null || expectedDownloadFileName == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (zoneFile.getMetaAddr() != possibleDownloadFile.getMetaAddr()) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user