diff options
author | Arno <am@disconnect.de> | 2013-09-14 13:01:21 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-09-14 13:01:21 +0200 |
commit | 612776e7976f1a901849c61ae9142dd49b8e3f5c (patch) | |
tree | 9244987862d4b5f462bfb621d39d8bd2b5c29a95 /smdirmodel.cpp | |
parent | ab474b97614825636831a81c7ea8097ef7b14af9 (diff) | |
download | SheMov-612776e7976f1a901849c61ae9142dd49b8e3f5c.tar.gz SheMov-612776e7976f1a901849c61ae9142dd49b8e3f5c.tar.bz2 SheMov-612776e7976f1a901849c61ae9142dd49b8e3f5c.zip |
Behave on qApp->quit()
Sometimes there was a warning that a thread was being destroyed while
still running. This was SmDirWatcher::run(). read() blocks until new
data is ready, so run() never exited.
Fix it by poll()ing the inotify_descriptor. Return immediately if no
data is ready.
Also fix a small memory leak. Delete ConsistencyChecker when the dialog
is destructed.
Diffstat (limited to 'smdirmodel.cpp')
-rw-r--r-- | smdirmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/smdirmodel.cpp b/smdirmodel.cpp index 8a403d1..2b1e7dc 100644 --- a/smdirmodel.cpp +++ b/smdirmodel.cpp @@ -38,6 +38,7 @@ SmDirModel::~SmDirModel(){ if(mWatch->isRunning()){ mWatch->stop(); } + mWatch->deleteLater(); } QVariant SmDirModel::data(const QModelIndex &index, int role) const{ |