Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / vcl / workben / pngfuzzer.cxx
bloba88784e1af177293514e41070e8ce0d4943d2ac2
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/pngread.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" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
45 SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
46 vcl::PNGReader aReader(aStream);
47 (void)aReader.Read();
48 return 0;
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */