Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates-src > by-pkgid > acf08a0c570ae27015dfc1a0440c2975 > files > 1

kdeutils4-4.6.5-0.1.mga1.src.rpm

--- kdeutils/ark/kerfuffle/cliinterface.cpp	2011/07/11 03:20:33	1240907
+++ kdeutils/ark/kerfuffle/cliinterface.cpp	2011/07/11 03:23:39	1240908
@@ -325,10 +325,13 @@
         return false;
     }
 
-    Q_ASSERT(!m_process);
-
     kDebug() << "Executing" << programPath << arguments;
 
+    if (m_process) {
+        m_process->waitForFinished();
+        delete m_process;
+    }
+
 #ifdef Q_OS_WIN
     m_process = new KProcess();
 #else