rust/clippy_lints
bors a39589480b Auto merge of #5129 - JohnTitor:use-checked-sub, r=flip1995
Use `checked_sub` to avoid index out of bounds

(Fixes) #4681 (possibly)

The issue likely occurs due to `lit_snip.len() < suffix.len() + 1`. You can see similar backtrace to change it to `lit_snip.len() - suffix.len() - 1000` or something then run `cargo test --release`.
But I couldn't come up with the test so I'd leave the issue open if we want.

changelog: Fix potential ICE in `misc_early`
2020-02-03 16:47:25 +00:00
..
src Auto merge of #5129 - JohnTitor:use-checked-sub, r=flip1995 2020-02-03 16:47:25 +00:00
Cargo.toml Remove unused debugging feature 2019-11-25 17:23:07 +01:00
README.md

This crate contains Clippy lints. For the main crate, check crates.io or GitHub.