add index checks for the slice in manual_slice_fill (#14193)

fix #14192

changelog: [`manual_slice_fill`]: resolve FP caused by missing index
checks for the slice
This commit is contained in:
Jason Newcomb 2025-02-12 15:14:36 +00:00 committed by GitHub
commit a342340e6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 40 additions and 3 deletions

View file

@ -4,6 +4,7 @@ use clippy_utils::macros::span_is_local;
use clippy_utils::msrvs::{self, Msrv};
use clippy_utils::source::{HasSession, snippet_with_applicability};
use clippy_utils::ty::implements_trait;
use clippy_utils::visitors::is_local_used;
use clippy_utils::{higher, peel_blocks_with_stmt, span_contains_comment};
use rustc_ast::ast::LitKind;
use rustc_ast::{RangeLimits, UnOp};
@ -43,7 +44,7 @@ pub(super) fn check<'tcx>(
&& let ExprKind::Block(..) = body.kind
// Check if the body is an assignment to a slice element.
&& let ExprKind::Assign(assignee, assignval, _) = peel_blocks_with_stmt(body).kind
&& let ExprKind::Index(slice, _, _) = assignee.kind
&& let ExprKind::Index(slice, idx, _) = assignee.kind
// Check if `len()` is used for the range end.
&& let ExprKind::MethodCall(path, recv,..) = end.kind
&& path.ident.name == sym::len
@ -58,6 +59,10 @@ pub(super) fn check<'tcx>(
// The `fill` method requires that the slice's element type implements the `Clone` trait.
&& let Some(clone_trait) = cx.tcx.lang_items().clone_trait()
&& implements_trait(cx, cx.typeck_results().expr_ty(slice), clone_trait, &[])
// https://github.com/rust-lang/rust-clippy/issues/14192
&& let ExprKind::Path(Resolved(_, idx_path)) = idx.kind
&& let Res::Local(idx_hir) = idx_path.res
&& !is_local_used(cx, assignval, idx_hir)
{
sugg(cx, body, expr, slice.span, assignval.span);
}

View file

@ -1,5 +1,5 @@
#![warn(clippy::manual_slice_fill)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::needless_range_loop, clippy::useless_vec)]
macro_rules! assign_element {
($slice:ident, $index:expr) => {
@ -99,3 +99,19 @@ fn should_not_lint() {
*i = None;
}
}
fn issue_14192() {
let mut tmp = vec![0; 3];
for i in 0..tmp.len() {
tmp[i] = i;
}
for i in 0..tmp.len() {
tmp[i] = 2 + i;
}
for i in 0..tmp.len() {
tmp[0] = i;
}
}

View file

@ -1,5 +1,5 @@
#![warn(clippy::manual_slice_fill)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::needless_range_loop, clippy::useless_vec)]
macro_rules! assign_element {
($slice:ident, $index:expr) => {
@ -108,3 +108,19 @@ fn should_not_lint() {
*i = None;
}
}
fn issue_14192() {
let mut tmp = vec![0; 3];
for i in 0..tmp.len() {
tmp[i] = i;
}
for i in 0..tmp.len() {
tmp[i] = 2 + i;
}
for i in 0..tmp.len() {
tmp[0] = i;
}
}