diff --git a/components/esp_system/panic.c b/components/esp_system/panic.c index 628a153892..631a656495 100644 --- a/components/esp_system/panic.c +++ b/components/esp_system/panic.c @@ -338,6 +338,6 @@ void __attribute__((noreturn)) panic_abort(const char *details) #endif #endif - *((int *) 0) = 0; // should be an invalid operation on targets + *((int *) 0) = 0; // NOLINT(clang-analyzer-core.NullDereference) should be an invalid operation on targets while(1); } \ No newline at end of file