• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include <cstddef>
6 #include <cstdint>
7 
8 #include <fuzzer/FuzzedDataProvider.h>
9 
10 #include "net/http/http_content_disposition.h"
11 
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)12 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
13   FuzzedDataProvider input{data, size};
14   auto charset = input.ConsumeRandomLengthString(100u);
15   auto header = input.ConsumeRemainingBytesAsString();
16   net::HttpContentDisposition content_disposition{header, charset};
17   return 0;
18 }
19