aboutsummaryrefslogtreecommitdiff
path: root/fuzzers/patch_fuzzer.cc
blob: 83bebcf5fc846fe404f96a15bdab662a5aea442f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2017 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 <stddef.h>
#include <stdint.h>

#include "components/zucchini/buffer_view.h"
#include "components/zucchini/patch_reader.h"
#include "third_party/abseil-cpp/absl/types/optional.h"

// Entry point for LibFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
  logging::SetMinLogLevel(3);  // Disable console spamming.
  zucchini::ConstBufferView patch(data, size);
  absl::optional<zucchini::EnsemblePatchReader> patch_reader =
      zucchini::EnsemblePatchReader::Create(patch);
  return 0;
}