diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-02 14:41:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-15 13:44:15 +0000 |
commit | f5bfdb06e3a14e0a754d09690a323a6f8ba3f0fa (patch) | |
tree | 56753b2fb45a390a00f4df52ab078bd9e235a6af /vcl/workben/pptfuzzer.cxx | |
parent | 4af16b2f00c3d7d5c48f65aeff2c34fff3942ada (diff) |
add ppt fuzzer
Change-Id: I283d24fc2d7420273c3769fcd4ea3938da85afb4
Diffstat (limited to 'vcl/workben/pptfuzzer.cxx')
-rw-r--r-- | vcl/workben/pptfuzzer.cxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vcl/workben/pptfuzzer.cxx b/vcl/workben/pptfuzzer.cxx new file mode 100644 index 000000000000..8c9345339fbf --- /dev/null +++ b/vcl/workben/pptfuzzer.cxx @@ -0,0 +1,23 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include <tools/stream.hxx> +#include <vcl/FilterConfigItem.hxx> +#include "commonfuzzer.hxx" + +extern "C" bool TestImportPPT(SvStream &rStream); + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) +{ + SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ); + (void)TestImportPPT(aStream); + return 0; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |