From 07522f013fe6e6aaad28c40247f11e6409477f64 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 13 Dec 2024 15:17:06 +0100 Subject: pkg/declextract: change auto_todo type to int8 We use auto_todo type as an element of array for void*. array[int8] is lowered to the buffer type, which is much better handled by the fuzzer engine + closer resembles real blobs. --- pkg/declextract/serialization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/declextract/serialization.go b/pkg/declextract/serialization.go index 2906ce6c2..6d27d2a13 100644 --- a/pkg/declextract/serialization.go +++ b/pkg/declextract/serialization.go @@ -25,7 +25,7 @@ const header = `# Code generated by syz-declextract. DO NOT EDIT. meta automatic -type auto_todo intptr +type auto_todo int8 ` -- cgit mrf-deployment