From 0959ceeff2ec0253b9fc5769f25b3814bae674e4 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Mon, 23 Sep 2013 15:10:34 +0200 Subject: [PATCH] Disable delete of folder object temparily. --- src/mirall/folderman.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mirall/folderman.cpp b/src/mirall/folderman.cpp index 552b602827..67c53c9617 100644 --- a/src/mirall/folderman.cpp +++ b/src/mirall/folderman.cpp @@ -472,7 +472,10 @@ void FolderMan::removeFolder( const QString& alias ) qDebug() << "Remove folder config file " << file.fileName(); file.remove(); } - f->deleteLater(); + // FIXME: this is a temporar dirty fix against a crash happening because + // the csync owncloud module still has static components. Activate the + // delete once the module is fixed. + // f->deleteLater(); } }