[Libreoffice-commits] core.git: vcl/Executable_xpmfuzzer.mk vcl/workben
Your Name
you at example.com
Mon Oct 9 14:49:53 UTC 2017
vcl/Executable_xpmfuzzer.mk | 1 -
vcl/workben/xpmfuzzer.cxx | 23 +++++++++++++++++++++++
2 files changed, 23 insertions(+), 1 deletion(-)
New commits:
commit bd219133ef6e4ba1d7b9e8cadadeae80d7c59922
Author: Your Name <you at example.com>
Date: Mon Oct 9 14:44:58 2017 +0000
shrink xpm fuzzer
Change-Id: Iacae6fa5135c427ad22d185658c25f44af2ac5d0
Reviewed-on: https://gerrit.libreoffice.org/43286
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/Executable_xpmfuzzer.mk b/vcl/Executable_xpmfuzzer.mk
index 0118213ee05a..892d5c962bb1 100644
--- a/vcl/Executable_xpmfuzzer.mk
+++ b/vcl/Executable_xpmfuzzer.mk
@@ -33,7 +33,6 @@ $(eval $(call gb_Executable_use_libraries,xpmfuzzer,\
$(eval $(call gb_Executable_use_static_libraries,xpmfuzzer,\
findsofficepath \
ulingu \
- fuzzer_core \
fuzzerstubs \
))
diff --git a/vcl/workben/xpmfuzzer.cxx b/vcl/workben/xpmfuzzer.cxx
index 95a4692bb0c8..e5160414ccaf 100644
--- a/vcl/workben/xpmfuzzer.cxx
+++ b/vcl/workben/xpmfuzzer.cxx
@@ -11,6 +11,29 @@
#include <../source/filter/ixpm/xpmread.hxx>
#include "commonfuzzer.hxx"
+#include <config_features.h>
+#include <osl/detail/component-mapping.h>
+
+const lib_to_factory_mapping *
+lo_get_factory_map(void)
+{
+ static lib_to_factory_mapping map[] = {
+ { 0, 0 }
+ };
+
+ return map;
+}
+
+const lib_to_constructor_mapping *
+lo_get_constructor_map(void)
+{
+ static lib_to_constructor_mapping map[] = {
+ { 0, 0 }
+ };
+
+ return map;
+}
+
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
{
TypicalFuzzerInitialize(argc, argv);
More information about the Libreoffice-commits
mailing list