blob: 7b0e8c936d1485315f45ed430a730340d2280ea3 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// 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 "base/at_exit.h"
#include "base/compiler_specific.h"
#include "base/containers/span.h"
#include "base/i18n/icu_util.h"
#include "base/logging.h"
#include "base/pickle.h"
#include "components/bookmarks/browser/bookmark_node_data.h"
class Environment {
public:
Environment() {
logging::SetMinLogLevel(logging::LOGGING_FATAL);
CHECK(base::i18n::InitializeICU());
}
base::AtExitManager at_exit_manager;
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static Environment env;
base::Pickle pickle =
base::Pickle::WithUnownedBuffer(UNSAFE_TODO(base::span(data, size)));
bookmarks::BookmarkNodeData bookmark_node_data;
bookmark_node_data.ReadFromPickle(&pickle);
return 0;
}