From: Taylor Cramer Date: Thu, 21 Apr 2016 16:36:39 +0000 (-0700) Subject: Fixed destructor detection in mem_forget X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=8866ba9e2a744c5f033e7d1f5b0298da77550b91;hp=77427b6ead79c54648c47f5048953590a59615bb;p=rust.git Fixed destructor detection in mem_forget --- diff --git a/src/mem_forget.rs b/src/mem_forget.rs index 0568e70023a..1f627d614ff 100644 --- a/src/mem_forget.rs +++ b/src/mem_forget.rs @@ -1,6 +1,6 @@ use rustc::lint::*; use rustc::hir::{Expr, ExprCall, ExprPath}; -use utils::{get_trait_def_id, implements_trait, match_def_path, paths, span_lint}; +use utils::{match_def_path, paths, span_lint}; /// **What it does:** This lint checks for usage of `std::mem::forget(t)` where `t` is `Drop`. /// @@ -29,12 +29,13 @@ fn check_expr(&mut self, cx: &LateContext, e: &Expr) { if let ExprPath(None, _) = path_expr.node { let def_id = cx.tcx.def_map.borrow()[&path_expr.id].def_id(); if match_def_path(cx, def_id, &paths::MEM_FORGET) { - if let Some(drop_trait_id) = get_trait_def_id(cx, &paths::DROP) { - let forgot_ty = cx.tcx.expr_ty(&args[0]); + let forgot_ty = cx.tcx.expr_ty(&args[0]); - if implements_trait(cx, forgot_ty, drop_trait_id, Vec::new()) { - span_lint(cx, MEM_FORGET, e.span, "usage of mem::forget on Drop type"); - } + if match forgot_ty.ty_adt_def() { + Some(def) => def.has_dtor(), + _ => false + } { + span_lint(cx, MEM_FORGET, e.span, "usage of mem::forget on Drop type"); } } }