From 2da60bb46a93a8d68111e1f18b31e8e6ddc6cc2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Wed, 18 Aug 2021 10:26:08 +0100 Subject: [PATCH] ofz#36713 Indirect-leak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I665d7eb66f04fd78b6345f22d5f5724e5778a211 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120653 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- unotools/source/config/securityoptions.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unotools/source/config/securityoptions.cxx b/unotools/source/config/securityoptions.cxx index cec3642fa37a..cd41f92a0eac 100644 --- a/unotools/source/config/securityoptions.cxx +++ b/unotools/source/config/securityoptions.cxx @@ -263,6 +263,8 @@ void SetTrustedAuthors( const std::vector< Certificate >& rAuthors ) bool IsOptionSet( EOption eOption ) { + if (utl::ConfigManager::IsFuzzing()) + return false; bool bSet = false; switch(eOption) {