summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-06-18 09:00:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-06-18 11:12:00 +0200
commit857c72b6eaa7ecb96300a096280dae8e2895d05c (patch)
tree6acf67cda47676400329a7b1e0ab40b70830f89c
parent42c0e433aca68c669bc0f55af404b6bae1655fba (diff)
ofz#15335 avoid config during fuzzing
Change-Id: I7a0270fb36b4390ae2e8f365ace8e724938224c3 Reviewed-on: https://gerrit.libreoffice.org/74249 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/filter/graphicfilter.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index c6b26c6ec2da..9742715aa4fd 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -26,6 +26,7 @@
#include <ucbhelper/content.hxx>
#include <cppuhelper/implbase.hxx>
#include <tools/fract.hxx>
+#include <unotools/configmgr.hxx>
#include <unotools/resmgr.hxx>
#include <tools/stream.hxx>
#include <tools/urlobj.hxx>
@@ -1770,7 +1771,7 @@ ErrCode GraphicFilter::ImportGraphic( Graphic& rGraphic, const OUString& rPath,
if( nFormat != GRFILTER_FORMAT_DONTKNOW )
{
aShortName = GetImportFormatShortName( nFormat ).toAsciiUpperCase();
- if (aShortName == "PCD")
+ if (aShortName == "PCD" && !utl::ConfigManager::IsFuzzing())
{
OUString aFilterConfigPath( "Office.Common/Filter/Graphic/Import/PCD" );
pFilterConfigItem = std::make_unique<FilterConfigItem>( aFilterConfigPath );