Fixed delete and non-null pointer bug

This commit is contained in:
Eric Katzfey 2023-07-26 14:15:44 -07:00
parent 81ab314a4c
commit 936d7c4f28
1 changed files with 1 additions and 0 deletions

View File

@ -1031,6 +1031,7 @@ GPS::run()
if ((_interface == GPSHelper::Interface::UART) && (_uart)) { if ((_interface == GPSHelper::Interface::UART) && (_uart)) {
(void) _uart->close(); (void) _uart->close();
delete _uart; delete _uart;
_uart = nullptr;
#ifdef __PX4_LINUX #ifdef __PX4_LINUX