/src/libreoffice/vcl/workben/epsfuzzer.cxx
Line | Count | Source (jump to first uncovered line) |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
5 | | * This Source Code Form is subject to the terms of the Mozilla Public |
6 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
7 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
8 | | */ |
9 | | |
10 | | #include <tools/stream.hxx> |
11 | | #include <vcl/FilterConfigItem.hxx> |
12 | | #include "commonfuzzer.hxx" |
13 | | #include <filter/EpsReader.hxx> |
14 | | |
15 | | #include <config_features.h> |
16 | | #include <osl/detail/component-mapping.h> |
17 | | |
18 | | extern "C" { |
19 | | void com_sun_star_i18n_LocaleDataImpl_get_implementation(void); |
20 | | void com_sun_star_i18n_BreakIterator_Unicode_get_implementation(void); |
21 | | void com_sun_star_i18n_BreakIterator_get_implementation(void); |
22 | | void com_sun_star_i18n_NativeNumberSupplier_get_implementation(void); |
23 | | void com_sun_star_i18n_NumberFormatCodeMapper_get_implementation(void); |
24 | | } |
25 | | |
26 | | const lib_to_factory_mapping * |
27 | | lo_get_factory_map(void) |
28 | 0 | { |
29 | 0 | static lib_to_factory_mapping map[] = { |
30 | 0 | { 0, 0 } |
31 | 0 | }; |
32 | |
|
33 | 0 | return map; |
34 | 0 | } |
35 | | |
36 | | const lib_to_constructor_mapping * |
37 | | lo_get_constructor_map(void) |
38 | 379k | { |
39 | 379k | static lib_to_constructor_mapping map[] = { |
40 | 379k | { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation }, |
41 | 379k | { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation }, |
42 | 379k | { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation }, |
43 | 379k | { "com_sun_star_i18n_NativeNumberSupplier_get_implementation", com_sun_star_i18n_NativeNumberSupplier_get_implementation }, |
44 | 379k | { "com_sun_star_i18n_NumberFormatCodeMapper_get_implementation", com_sun_star_i18n_NumberFormatCodeMapper_get_implementation }, |
45 | 379k | { 0, 0 } |
46 | 379k | }; |
47 | | |
48 | 379k | return map; |
49 | 379k | } |
50 | | |
51 | | extern "C" void* lo_get_custom_widget_func(const char*) |
52 | 0 | { |
53 | 0 | return nullptr; |
54 | 0 | } |
55 | | |
56 | | extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) |
57 | 92 | { |
58 | 92 | TypicalFuzzerInitialize(argc, argv); |
59 | 92 | return 0; |
60 | 92 | } |
61 | | |
62 | | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) |
63 | 440k | { |
64 | 440k | SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ); |
65 | 440k | Graphic aGraphic; |
66 | 440k | (void)ImportEpsGraphic(aStream, aGraphic); |
67 | 440k | return 0; |
68 | 440k | } |
69 | | |
70 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |