Commit 583d3a0c authored by Jonathan Metzman's avatar Jonathan Metzman Committed by Commit Bot

Add missing const to data param of LLVMFuzzerTestOneInupt

Change-Id: I663564ce66a7f41aef466d47373f89557992a2b6
Reviewed-on: https://chromium-review.googlesource.com/c/1358918Reviewed-by: default avatarDaniel Rubery <drubery@chromium.org>
Commit-Queue: Jonathan Metzman <metzman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#613162}
parent 910efca5
......@@ -11,7 +11,7 @@
#include "components/safe_browsing/proto/csd.pb.h"
extern "C" int LLVMFuzzerTestOneInput(uint8_t* data, size_t size) {
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static safe_browsing::BinaryFeatureExtractor* extractor =
new safe_browsing::BinaryFeatureExtractor();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment