12345678910111213141516171819202122232425262728293031 |
- /* 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/.
- *
- * Copyright 2018 (c) Fraunhofer IOSB (Author: Lukas Meling)
- */
- #include <ua_types.h>
- #include <ua_types_generated_handling.h>
- #include "ua_types_encoding_json.h"
- /*
- ** Main entry point. The fuzzer invokes this function with each
- ** fuzzed input.
- */
- extern "C" int
- LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
- UA_ByteString buf;
- buf.data = (UA_Byte*)data;
- buf.length = size;
- UA_Variant out;
- UA_Variant_init(&out);
- UA_StatusCode retval = UA_decodeJson(&buf, &out, &UA_TYPES[UA_TYPES_VARIANT]);
- if(retval == UA_STATUSCODE_GOOD)
- UA_Variant_deleteMembers(&out);
- return 0;
- }
|