mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
9 lines
249 B
Rust
9 lines
249 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
use naga::front::spv::Parser;
|
|
|
|
fuzz_target!(|data: Vec<u32>| {
|
|
// Ensure the parser can handle potentially malformed data without crashing.
|
|
let _result = Parser::new(data.into_iter()).parse();
|
|
});
|