From 0a018f30de5fccdc47e5f8c08d04e4c5efab8022 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 18 Apr 2014 10:21:58 -0700 Subject: Fix crash when manually adding a dive When a manually added dive is saved we cancel the plan. In that process we throw away the cylinders which triggers a redraw of the profile. Which tries to access the diveplan and its data points that have already been freed. BOOM. Signed-off-by: Dirk Hohndel --- qt-ui/diveplanner.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'qt-ui') diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 4ca9a4938..2f55fd564 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -1404,6 +1404,7 @@ void DivePlannerPointsModel::cancelPlan() free(stagingDive); setPlanMode(NOTHING); stagingDive = NULL; + diveplan.dp = NULL; CylindersModel::instance()->setDive(current_dive); CylindersModel::instance()->update(); } -- cgit v1.2.3-70-g09d2