mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Return immediately after indexing unallocated space, otherwise it gets processed twice.
This commit is contained in:
parent
23368a50af
commit
e38474ab1a
@ -454,6 +454,7 @@ public final class KeywordSearchIngestModule implements FileIngestModule {
|
|||||||
// unallocated and unused blocks can only have strings extracted from them.
|
// unallocated and unused blocks can only have strings extracted from them.
|
||||||
if ((aType.equals(TskData.TSK_DB_FILES_TYPE_ENUM.UNALLOC_BLOCKS) || aType.equals(TskData.TSK_DB_FILES_TYPE_ENUM.UNUSED_BLOCKS))) {
|
if ((aType.equals(TskData.TSK_DB_FILES_TYPE_ENUM.UNALLOC_BLOCKS) || aType.equals(TskData.TSK_DB_FILES_TYPE_ENUM.UNUSED_BLOCKS))) {
|
||||||
extractStringsAndIndex(aFile);
|
extractStringsAndIndex(aFile);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
final long size = aFile.getSize();
|
final long size = aFile.getSize();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user