Skip to content

Commit

Permalink
Update types.go
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed May 29, 2024
1 parent 184564c commit 1ae5a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dyld/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (i CacheSlideInfo3) GetPageSize() uint32 {
func (i CacheSlideInfo3) SlidePointer(ptr uint64) uint64 {
if ptr == 0 {
return 0
} else if (ptr & 0xFFF0_0000_0000_0000) == 0 {
} else if (ptr & 0xFFF8_0000_0000_0000) == 0 {
return ptr
}
pointer := CacheSlidePointer3(ptr)
Expand Down

0 comments on commit 1ae5a82

Please sign in to comment.