From 645e75f8038d1b177ead2d6ea0b3ade6f7f9d985 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 7 Jun 2018 15:32:16 +0200 Subject: executor: make syscall table and number constant We see some crashes that suggest corruption of the syscall number: invalid command number 1296 (errno 11) invalid command number 107 (errno 110) Make the table and the number constant to prevent corruption. --- pkg/csource/linux_common.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg/csource/linux_common.go') diff --git a/pkg/csource/linux_common.go b/pkg/csource/linux_common.go index 4d168e661..1aa454f9e 100644 --- a/pkg/csource/linux_common.go +++ b/pkg/csource/linux_common.go @@ -221,8 +221,6 @@ struct call_t { syscall_t call; }; -extern call_t syscalls[]; -extern unsigned syscall_count; #endif #if defined(SYZ_EXECUTOR) || (defined(SYZ_REPEAT) && defined(SYZ_WAIT_REPEAT)) || \ -- cgit mrf-deployment