Skip to content

Commit

Permalink
chore: always return nil error in macho file symbol search
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Oct 10, 2024
1 parent 14c62c9 commit 815803d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macho.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (m *machoFile) initSymtab() error {
m.symtab.table[sym.Name] = sym
}
})
return m.symtab.err
return nil
}

func (m *machoFile) hasSymbolTable() (bool, error) {
Expand Down

0 comments on commit 815803d

Please sign in to comment.