Skip to content

Commit

Permalink
Update ips.go
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Jul 19, 2024
1 parent cf43e5a commit 1f1f0a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/crashlog/ips.go
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,8 @@ func (i *Ips) Symbolicate210(ipswPath string) (err error) {
}
if i.Payload.ProcessByPid[pid].ThreadByID[tid].KernelFrames[idx].ImageName == "absolute" {
continue // skip absolute
} else if i.Payload.ProcessByPid[pid].ThreadByID[tid].KernelFrames[idx].ImageName == "kernelcache" {
} else if i.Payload.ProcessByPid[pid].ThreadByID[tid].KernelFrames[idx].ImageName == "kernelcache" ||
i.Payload.ProcessByPid[pid].ThreadByID[tid].KernelFrames[idx].ImageName == "kernelcache (__TEXT_EXEC)" {
if funcs, ok := machoFuncMap[i.Payload.ProcessByPid[pid].ThreadByID[tid].KernelFrames[idx].ImageName]; ok {
found := false
for _, fn := range funcs {
Expand Down

0 comments on commit 1f1f0a2

Please sign in to comment.