aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host/host.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/host/host.go')
-rw-r--r--pkg/host/host.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/host/host.go b/pkg/host/host.go
index 4e634f1aa..720bb60f1 100644
--- a/pkg/host/host.go
+++ b/pkg/host/host.go
@@ -38,9 +38,6 @@ func DetectSupportedSyscalls() (map[*sys.Call]bool, error) {
}
func isSupported(kallsyms []byte, c *sys.Call) bool {
- if c.NR == -1 {
- return false // don't even have a syscall number
- }
if strings.HasPrefix(c.CallName, "syz_") {
return isSupportedSyzkall(c)
}