summaryrefslogtreecommitdiffstats
path: root/qt-ui/downloadfromdivecomputer.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-15 06:03:54 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-15 06:31:50 -0800
commit31aa93857a794078c6a43e4a5b9808a95f13a04e (patch)
treeddc0d1d3e92540bddd6029f911b46db091dbc049 /qt-ui/downloadfromdivecomputer.cpp
parentbbda9dd10822583941761592d8ac8bc12a01d82d (diff)
downloadsubsurface-31aa93857a794078c6a43e4a5b9808a95f13a04e.tar.gz
Initialize device_data_t data
If the user never clicks on the log and dump checkboxes (and that's what we expect to be the case by default), then the log / dump flags (and filenames) were never initialized. I am reasonably certain this will close the following three bugs, that all show the same symptom: they behave as if libdivecomputer dump was set, even if it wasn't. Fixes: #426 Fixes: #431 Fixes: #435 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r--qt-ui/downloadfromdivecomputer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp
index 5dc38ca0a..3c098cec3 100644
--- a/qt-ui/downloadfromdivecomputer.cpp
+++ b/qt-ui/downloadfromdivecomputer.cpp
@@ -76,6 +76,7 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) :
timer->setInterval(200);
connect(timer, SIGNAL(timeout()), this, SLOT(updateProgressBar()));
updateState(INITIAL);
+ memset(&data, 0, sizeof(data));
}
void DownloadFromDCWidget::updateProgressBar()