From 63db65b2f0d85a41a0ceb38460b7970c5ce8b1ac Mon Sep 17 00:00:00 2001 From: John Turner Date: Mon, 17 Nov 2025 21:20:40 +0000 Subject: bump mon for bug fixes --- src/atom/parsers.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/atom') diff --git a/src/atom/parsers.rs b/src/atom/parsers.rs index c609a1c..be59e1f 100644 --- a/src/atom/parsers.rs +++ b/src/atom/parsers.rs @@ -507,4 +507,16 @@ mod test { Atom::parser().check_finished(it).unwrap(); } + + #[test] + fn test_against_fuzzer_false_positives() { + let atoms = ["media-libs/libsdl2[haptitick(+),sound(+)vd,eio(+)]"]; + + for atom in atoms { + assert!( + Atom::parser().check_finished(InputIter::new(atom)).is_err(), + "{atom}" + ); + } + } } -- cgit v1.2.3