summary refs log blame commit diff
path: root/fuzz/usb_descriptor_fuzzer.rs
blob: a33e7c7529995eebe823d8e178f779590a13d239 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                                         
                           


                                      


                                          
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#![no_main]

use cros_fuzz::fuzz_target;

use usb_util::parse_usbfs_descriptors;

fuzz_target!(|data| {
    let _ = parse_usbfs_descriptors(data);
});