diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-04-18 14:46:09 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2025-04-21 09:24:37 -0400 |
| commit | af44dc013e54bd485edc3b354a7aff3d83dccaa4 (patch) | |
| tree | 665cfa943cbb0a44af91aa45735391207f446ce6 /view/pe/teview.h | |
| parent | 2b31504fcdedd68a94fbd6ad90d7d2967b46291a (diff) | |
Actually fix crash when opening aarch64 TE binary with free version
Diffstat (limited to 'view/pe/teview.h')
| -rw-r--r-- | view/pe/teview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/pe/teview.h b/view/pe/teview.h index 22177751..ab4c2183 100644 --- a/view/pe/teview.h +++ b/view/pe/teview.h @@ -62,7 +62,8 @@ namespace BinaryNinja uint64_t m_headersOffset; Ref<Architecture> m_arch; uint64_t m_entryPoint; - + uint32_t m_addressSize = 4; + protected: virtual uint64_t PerformGetEntryPoint() const override; virtual bool PerformIsExecutable() const override { return true; } |
