mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-30 07:46:51 +08:00
22 lines
789 B
C++
22 lines
789 B
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include <QGuiApplication>
|
|
#include <QTextDocument>
|
|
#include <QtGlobal>
|
|
|
|
// silence warnings
|
|
static QtMessageHandler mh = qInstallMessageHandler([](QtMsgType, const QMessageLogContext &,
|
|
const QString &) {});
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const char *Data, size_t Size) {
|
|
static int argc = 3;
|
|
static char arg1[] = "fuzzer";
|
|
static char arg2[] = "-platform";
|
|
static char arg3[] = "minimal";
|
|
static char *argv[] = {arg1, arg2, arg3, nullptr};
|
|
static QGuiApplication qga(argc, argv);
|
|
QTextDocument().setHtml(QByteArray::fromRawData(Data, Size));
|
|
return 0;
|
|
}
|