@@ -901,6 +901,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
901901 & pattern_type_mismatch:: PATTERN_TYPE_MISMATCH ,
902902 & precedence:: PRECEDENCE ,
903903 & ptr:: CMP_NULL ,
904+ & ptr:: INVALID_NULL_USAGE ,
904905 & ptr:: MUT_FROM_REF ,
905906 & ptr:: PTR_ARG ,
906907 & ptr_eq:: PTR_EQ ,
@@ -1669,6 +1670,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16691670 LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
16701671 LintId :: of( & precedence:: PRECEDENCE ) ,
16711672 LintId :: of( & ptr:: CMP_NULL ) ,
1673+ LintId :: of( & ptr:: INVALID_NULL_USAGE ) ,
16721674 LintId :: of( & ptr:: MUT_FROM_REF ) ,
16731675 LintId :: of( & ptr:: PTR_ARG ) ,
16741676 LintId :: of( & ptr_eq:: PTR_EQ ) ,
@@ -2007,6 +2009,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
20072009 LintId :: of( & non_octal_unix_permissions:: NON_OCTAL_UNIX_PERMISSIONS ) ,
20082010 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
20092011 LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
2012+ LintId :: of( & ptr:: INVALID_NULL_USAGE ) ,
20102013 LintId :: of( & ptr:: MUT_FROM_REF ) ,
20112014 LintId :: of( & ranges:: REVERSED_EMPTY_RANGES ) ,
20122015 LintId :: of( & regex:: INVALID_REGEX ) ,
0 commit comments