Coverage Report

Created: 2026-03-31 11:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/vcl/workben/jpgfuzzer.cxx
Line
Count
Source
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 <../source/filter/jpeg/jpeg.hxx>
12
#include "commonfuzzer.hxx"
13
14
#include <config_features.h>
15
#include <osl/detail/component-mapping.h>
16
17
const lib_to_factory_mapping *
18
lo_get_factory_map(void)
19
0
{
20
0
    static lib_to_factory_mapping map[] = {
21
0
        { 0, 0 }
22
0
    };
23
24
0
    return map;
25
0
}
26
27
const lib_to_constructor_mapping *
28
lo_get_constructor_map(void)
29
281k
{
30
281k
    static lib_to_constructor_mapping map[] = {
31
281k
        { 0, 0 }
32
281k
    };
33
34
281k
    return map;
35
281k
}
36
37
extern "C" void* lo_get_custom_widget_func(const char*)
38
0
{
39
0
    return nullptr;
40
0
}
41
42
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
43
92
{
44
92
    TypicalFuzzerInitialize(argc, argv);
45
92
    return 0;
46
92
}
47
48
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
49
393k
{
50
393k
    SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
51
393k
    ImportOutput aImportOutput;
52
393k
    (void)ImportJPEG(aStream, aImportOutput, GraphicFilterImportFlags::NONE, nullptr);
53
393k
    return 0;
54
393k
}
55
56
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */