aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.cpp
diff options
context:
space:
mode:
authorGravatar Boris Barbulovski <bbarbulovski@gmail.com>2014-01-15 18:52:42 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-16 12:15:47 +0700
commit6cc65f5e1cf1eb0c870323d4c19e2d5c9cc9fd11 (patch)
tree424ad29366d0ac0a09be8540b365342aca7f27dd /qt-ui/mainwindow.cpp
parenta27f67c02612791fad73b4e0550d942dc3a5a339 (diff)
downloadsubsurface-6cc65f5e1cf1eb0c870323d4c19e2d5c9cc9fd11.tar.gz
Fix some memory leaks.
Memory leaks were caused by broken parent/child relations. Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r--qt-ui/mainwindow.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp
index 8ebc67413..d2b208ed0 100644
--- a/qt-ui/mainwindow.cpp
+++ b/qt-ui/mainwindow.cpp
@@ -170,7 +170,10 @@ void MainWindow::on_actionClose_triggered()
/* clear the selection and the statistics */
selected_dive = -1;
- existing_filename = NULL;
+ if (existing_filename) {
+ free((void *)existing_filename);
+ existing_filename = NULL;
+ }
cleanUpEmpty();
mark_divelist_changed(false);