Commit a9a3c898 authored by Don Gagne's avatar Don Gagne
Browse files

Fix null pointer init

parent 6b4c1533
...@@ -44,7 +44,8 @@ ...@@ -44,7 +44,8 @@
SetupView::SetupView(QWidget* parent) : SetupView::SetupView(QWidget* parent) :
QGCQmlWidgetHolder(parent), QGCQmlWidgetHolder(parent),
_uasCurrent(NULL), _uasCurrent(NULL),
_initComplete(false) _initComplete(false),
_readyAutopilot(NULL)
{ {
#ifdef __android__ #ifdef __android__
_showFirmware = false; _showFirmware = false;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment