Simplify a bit
[LibreOffice.git] / vcl / workben / bmpfuzzer.cxx
blob8e22aabafc21f7b7b88090444ffeaed3c3d3b057
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #include <tools/stream.hxx>
11 #include <vcl/dibtools.hxx>
12 #include "commonfuzzer.hxx"
14 #include <config_features.h>
15 #include <osl/detail/component-mapping.h>
17 const lib_to_factory_mapping *
18 lo_get_factory_map(void)
20 static lib_to_factory_mapping map[] = {
21 { 0, 0 }
24 return map;
27 const lib_to_constructor_mapping *
28 lo_get_constructor_map(void)
30 static lib_to_constructor_mapping map[] = {
31 { 0, 0 }
34 return map;
37 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
39 TypicalFuzzerInitialize(argc, argv);
40 return 0;
43 extern "C" void* lo_get_custom_widget_func(const char*)
45 return nullptr;
48 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
50 SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
51 Bitmap aTarget;
52 (void)ReadDIB(aTarget, aStream, true);
53 return 0;
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */