dap

Results 5 issues of dap

#### What version of regex are you using? My tests where done using code from commit: 1a069b9232c607b34c4937122361aa075ef573fa #### Describe the bug at a high level. I did fuzzing tests with...

**Description** I did fuzz runs with naga fuzz targets with Rust overflow checks enabled and detected numerous different panics/issues: * glsl_parser * `naga/src/front/glsl/offset.rs:88:53` attempt to multiply with overflow * `naga/src/front/mod.rs:76:25`...

type: bug
naga
area: naga front-end
area: naga processing

I did more fuzz runs on the `parse` fuzz target and detected the following panics/issues: * `pdf/pdf/src/enc.rs:304:24` capacity overflow * `pdf/pdf/src/object/function.rs:152:100` attempt to subtract with overflow * UNKNOWN stack overflow...

I did fuzz runs on the `parse` target and the fuzzer detected a panic: ``` thread 'main' panicked at /repro/latest/pdf/pdf/src/object/function.rs:140:96: called `Option::unwrap()` on a `None` value ``` I attached an...

I did fuzz runs using the `fuzz_decode` fuzz target with Rust overflow checks enabled and detected three different panics/issues: 1. jpeg-decoder/src/decoder.rs:1025:28 attempt to multiply with overflow 2. jpeg-decoder/src/decoder.rs:911:16 attempt to...