Kaydet (Commit) bd219133 authored tarafından Your Name's avatar Your Name Kaydeden (comit) Caolán McNamara

shrink xpm fuzzer

Change-Id: Iacae6fa5135c427ad22d185658c25f44af2ac5d0
Reviewed-on: https://gerrit.libreoffice.org/43286Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst a636d2ee
......@@ -33,7 +33,6 @@ $(eval $(call gb_Executable_use_libraries,xpmfuzzer,\
$(eval $(call gb_Executable_use_static_libraries,xpmfuzzer,\
findsofficepath \
ulingu \
fuzzer_core \
fuzzerstubs \
))
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment