shrink ppm fuzzer
Change-Id: I6baf17ed113a73c9840af1515c13ce950af9d1c1
This commit is contained in:
parent
8200c0f802
commit
e74586f8d1
2 changed files with 23 additions and 1 deletions
|
@ -33,7 +33,6 @@ $(eval $(call gb_Executable_use_libraries,ppmfuzzer,\
|
|||
$(eval $(call gb_Executable_use_static_libraries,ppmfuzzer,\
|
||||
findsofficepath \
|
||||
ulingu \
|
||||
fuzzer_core \
|
||||
fuzzerstubs \
|
||||
))
|
||||
|
||||
|
|
|
@ -11,6 +11,29 @@
|
|||
#include <vcl/FilterConfigItem.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" bool ipbGraphicImport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pConfigItem);
|
||||
|
||||
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
|
||||
|
|
Loading…
Reference in a new issue