Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/vcl/workben/pptxfuzzer.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
14
extern "C" bool TestImportPPTX(SvStream& rStream);
15
16
extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv)
17
92
{
18
92
    TypicalFuzzerInitialize(argc, argv);
19
92
    return 0;
20
92
}
21
22
0
extern "C" void* SdCreateDialogFactory() { return nullptr; }
23
24
0
extern "C" void* com_sun_star_comp_Draw_VisioImportFilter_get_implementation() { return nullptr; }
25
26
0
extern "C" void* sdext_PDFIHybridAdaptor_get_implementation() { return nullptr; }
27
28
0
extern "C" void* sdext_PDFIRawAdaptor_Writer_get_implementation() { return nullptr; }
29
30
0
extern "C" void* sdext_PDFIRawAdaptor_Draw_get_implementation() { return nullptr; }
31
32
0
extern "C" void* sdext_PDFIRawAdaptor_Impress_get_implementation() { return nullptr; }
33
34
0
extern "C" void* sdext_PDFDetector_get_implementation() { return nullptr; }
35
36
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
37
440k
{
38
440k
    SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
39
440k
    (void)TestImportPPTX(aStream);
40
440k
    return 0;
41
440k
}
42
43
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */