From a0ab3984b37b9a3faf1cfc91f3ae98fdfcf4fe69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Vejpustek?= Date: Thu, 18 Apr 2024 13:53:01 +0200 Subject: [PATCH] fixup! chore(crypto): initialize automatic variables to zero --- crypto/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 6d6f43d95..1620f1349 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -59,11 +59,10 @@ CFLAGS += $(OPTFLAGS) \ -Wno-missing-braces \ -Werror -ifneq ($(FUZZER),1) +ifneq ($(FUZZER),1) # This can be removed once the fuzzer machine uses at least clang 16 CFLAGS += -ftrivial-auto-var-init=zero endif - ZKP_CFLAGS = \ -DECMULT_GEN_PREC_BITS=4 \ -DECMULT_WINDOW_SIZE=8 \