mirror of https://github.com/google/oss-fuzz.git
24 lines
861 B
C++
24 lines
861 B
C++
|
// Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include <vector>
|
||
|
#include "expat.h"
|
||
|
|
||
|
std::vector<const char*> kEncodings = {{"UTF-16", "UTF-8", "ISO-8859-1",
|
||
|
"US-ASCII", "UTF-16BE", "UTF-16LE",
|
||
|
"INVALIDENCODING"}};
|
||
|
// Entry point for LibFuzzer.
|
||
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||
|
const char* dataPtr = reinterpret_cast<const char*>(data);
|
||
|
for (int use_ns = 0; use_ns <= 1; ++use_ns) {
|
||
|
for (auto enc : kEncodings) {
|
||
|
XML_Parser parser =
|
||
|
use_ns ? XML_ParserCreateNS(enc, '\n') : XML_ParserCreate(enc);
|
||
|
XML_Parse(parser, dataPtr, size, true);
|
||
|
XML_ParserFree(parser);
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|