-
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix endian in Mach-O CPU_TYPE_ARM64 reading (#3542)
The 34Li1i format was wrong (using big endian) and not fitting the structure. Other changes are related cleanups.
- Loading branch information
1 parent
b943e1d
commit aab3cc7
Showing
2 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,6 +187,7 @@ struct arm_thread_state64 { | |
ut64 sp; | ||
ut64 pc; | ||
ut32 cpsr; | ||
ut32 flags; | ||
}; | ||
|
||
typedef struct { | ||
|