AP_Scripting: set lua nullptr after delete

This commit is contained in:
Iampete1 2022-10-12 19:33:54 +01:00 committed by Randy Mackay
parent 4ad17c5d41
commit 3a2c0fed61
1 changed files with 1 additions and 0 deletions

View File

@ -235,6 +235,7 @@ void AP_Scripting::thread(void) {
gcs().send_text(MAV_SEVERITY_CRITICAL, "Scripting: %s", "stopped"); gcs().send_text(MAV_SEVERITY_CRITICAL, "Scripting: %s", "stopped");
} }
delete lua; delete lua;
lua = nullptr;
// clear allocated i2c devices // clear allocated i2c devices
for (uint8_t i=0; i<SCRIPTING_MAX_NUM_I2C_DEVICE; i++) { for (uint8_t i=0; i<SCRIPTING_MAX_NUM_I2C_DEVICE; i++) {