Browse Source

Fix null pointer init

QGC4.4
Don Gagne 10 years ago
parent
commit
a9a3c8989b
  1. 3
      src/VehicleSetup/SetupView.cc

3
src/VehicleSetup/SetupView.cc

@ -44,7 +44,8 @@ @@ -44,7 +44,8 @@
SetupView::SetupView(QWidget* parent) :
QGCQmlWidgetHolder(parent),
_uasCurrent(NULL),
_initComplete(false)
_initComplete(false),
_readyAutopilot(NULL)
{
#ifdef __android__
_showFirmware = false;

Loading…
Cancel
Save