Fixed delete and non-null pointer bug

This commit is contained in:
Eric Katzfey 2023-07-26 14:15:44 -07:00
parent f6318c4926
commit 564c37d696
1 changed files with 1 additions and 0 deletions

View File

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