Remove unnecessary null pointer checks (#6358)

As reported by @elfring, we had several points in our code where
it was unnecessary to check pointers were non-null before deleting them.

Fixes https://github.com/meshtastic/firmware/issues/6170
This commit is contained in:
Tom Fifield
2025-03-21 21:54:42 +11:00
committed by GitHub
parent 31c0e8fa2c
commit ae27aaaf43
3 changed files with 7 additions and 13 deletions

View File

@@ -160,13 +160,11 @@ class AccelerometerThread : public concurrency::OSThread
void clean()
{
isInitialised = false;
if (sensor != nullptr) {
delete sensor;
sensor = nullptr;
}
delete sensor;
sensor = nullptr;
}
};
#endif
#endif
#endif