summaryrefslogtreecommitdiffstats
path: root/tests/libfuzzer/corelib/serialization/qcborvalue/fromcbor/main.cpp
blob: b82b0303caa72e03051313023dcb55172e3126be (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QCborValue>

extern "C" int LLVMFuzzerTestOneInput(const char *Data, size_t Size) {
    QCborValue::fromCbor(QByteArray::fromRawData(Data, Size));
    return 0;
}