Skip to content

Commit 4e64f74

Browse files
committed
Revert "Disable MH_FILESET parsing in Mach-O view"
This reverts commit 9169a13.
1 parent f003b3a commit 4e64f74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

view/macho/machoview.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3792,7 +3792,8 @@ uint64_t MachoViewType::ParseHeaders(BinaryView* data, uint64_t imageOffset, mac
37923792
ident.filetype == MH_KEXT_BUNDLE ||
37933793
ident.filetype == MH_CORE ||
37943794
ident.filetype == MH_PRELOAD ||
3795-
ident.filetype == MH_DSYM))
3795+
ident.filetype == MH_DSYM ||
3796+
ident.filetype == MH_FILESET))
37963797
{
37973798
m_logger->LogError("Unhandled Macho file class: 0x%x", ident.filetype);
37983799
errorMsg = "invalid file class";

0 commit comments

Comments
 (0)