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

shrink ole fuzzer

Change-Id: Iee390bd5e241536d4f55743083468c433417f572
üst 5a31258d
......@@ -33,7 +33,6 @@ $(eval $(call gb_Executable_use_libraries,olefuzzer,\
$(eval $(call gb_Executable_use_static_libraries,olefuzzer,\
findsofficepath \
ulingu \
fuzzer_core \
fuzzerstubs \
))
......
......@@ -10,6 +10,29 @@
#include <tools/stream.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 TestImportOLE2(SvStream &rStream);
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