Kaydet (Commit) bf3578ec authored tarafından Caolán McNamara's avatar Caolán McNamara

shrink tga fuzzer

Change-Id: I64793511c500c0fe3521c1b4b93c6f0db61ad6b3
üst e5bbf926
......@@ -33,7 +33,6 @@ $(eval $(call gb_Executable_use_libraries,tgafuzzer,\
$(eval $(call gb_Executable_use_static_libraries,tgafuzzer,\
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 itgGraphicImport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pConfigItem);
extern "C" int LLVMFuzzerInitialize(int *argc, char ***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