Android: Fix possible crash

Change-Id: I1b73a077f6d2f157d4367358f9f156d32b3e6cea
Task-number: QTCREATORBUG-15832
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2016-03-08 10:32:13 +01:00
parent f941eed4c8
commit d502727b2c

View File

@@ -599,7 +599,8 @@ void AndroidManifestEditorWidget::postSave()
if (project) {
if (Target *target = project->activeTarget()) {
AndroidQtSupport *androidQtSupport = AndroidManager::androidQtSupport(target);
androidQtSupport->manifestSaved(target);
if (androidQtSupport)
androidQtSupport->manifestSaved(target);
}
}
}