summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--view/macho/machoview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp
index f1b3eabb..34c11f69 100644
--- a/view/macho/machoview.cpp
+++ b/view/macho/machoview.cpp
@@ -3792,7 +3792,8 @@ uint64_t MachoViewType::ParseHeaders(BinaryView* data, uint64_t imageOffset, mac
ident.filetype == MH_KEXT_BUNDLE ||
ident.filetype == MH_CORE ||
ident.filetype == MH_PRELOAD ||
- ident.filetype == MH_DSYM))
+ ident.filetype == MH_DSYM ||
+ ident.filetype == MH_FILESET))
{
m_logger->LogError("Unhandled Macho file class: 0x%x", ident.filetype);
errorMsg = "invalid file class";