diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-12-21 14:51:54 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-12-21 14:53:37 +0100 |
| commit | bfdfc2603c187447d32ecbc8b5a378df53af5734 (patch) | |
| tree | cff7440626d57bf7453634c4de4f8e89fc8fc4a6 /executor/defs.h | |
| parent | bc5869180f69e2ad6c6b823e129e08a8e523d800 (diff) | |
prog: don't fail decoding on non-default out args
We get them in cross-compilation test where an out const
arg has different values in different archs.
No reason to fail deserialization in that case, replace with default
arg instead.
Diffstat (limited to 'executor/defs.h')
| -rw-r--r-- | executor/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/defs.h b/executor/defs.h index 9a8d21cae..a8efd5248 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -185,7 +185,7 @@ #if GOARCH_64 #define GOARCH "64" -#define SYZ_REVISION "854312b077f42679e628a51764359033f376a9d4" +#define SYZ_REVISION "fd5870a81478a9208df976f4d8066bbdfa12f8e5" #define SYZ_EXECUTOR_USES_FORK_SERVER 0 #define SYZ_EXECUTOR_USES_SHMEM 0 #define SYZ_PAGE_SIZE 4096 |
