From 789c32bf4ca93813095beefa9d0c4bc662a354d2 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 2 Dec 2015 17:50:47 -0800 Subject: [PATCH] QML UI: if load fails, don't continue processing data Signed-off-by: Dirk Hohndel --- qt-mobile/qmlmanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index bf7920e58..ffd0a4e8c 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -117,6 +117,7 @@ void QMLManager::loadDives() const char *error_string = get_error_string(); qmlUiShowMessage(error_string); appendTextToLog(error_string); + return; } process_dives(false, false);