diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-10-15 23:26:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-10-15 23:26:55 +0100 |
commit | e5bbf92696f47abadc78382b6a788deed70addc7 (patch) | |
tree | 633b40c05f1bf03c3b7ba1f0b40616c363f3d83d /vcl/workben | |
parent | 9bb9be2ab19a959e5fd602a9a532317d3c086723 (diff) |
shrink ras fuzzer
Change-Id: I3f0b83b9b502000cf206d01cb5af5417a5e52863
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/rasfuzzer.cxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vcl/workben/rasfuzzer.cxx b/vcl/workben/rasfuzzer.cxx index 2cc4314b55dc..bb78df03fea7 100644 --- a/vcl/workben/rasfuzzer.cxx +++ b/vcl/workben/rasfuzzer.cxx @@ -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 iraGraphicImport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pConfigItem); extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) |