summaryrefslogtreecommitdiff
path: root/view/macho
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2025-04-08 15:17:39 -0400
committerAlexander Taylor <alex@vector35.com>2025-04-09 17:16:23 -0400
commit21cf9360ec88f1090360a0635abe2c511da4d9d7 (patch)
tree4b4ec154bde0546e39e6106bab944907cf3368be /view/macho
parent2ea1bf8666ab3dcc1985d6871463c0d8bff0d78c (diff)
Revert "Disable MH_FILESET parsing in Mach-O view"
This reverts commit 9169a13c818fc7f3b09246360c31e200b01bda23.
Diffstat (limited to 'view/macho')
-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";