From dd03ff80d62048c9c49cb8e9a004dc45dafb4d7f Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 11 Nov 2012 23:57:11 +0800 Subject: [PATCH] Revert "For SSH processes, return if no arguments are found." This reverts commit 5e010083e9e8b9305ad97c7dae42542f693b2fe7. This comes as one part of reverting all the work related with the refactoring of the ssh command parser. That big refactoring commit 5a5fd236 causes some hard to debug crashes/problems. For the long term benefit, reverting now and early is a good choice. I will try to redo the refactoring in a better way for KDE SC 4.11, but for the upcoming 4.10 stability more important. --- src/ProcessInfo.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ProcessInfo.cpp b/src/ProcessInfo.cpp index dd0a322cd..e081215f3 100644 --- a/src/ProcessInfo.cpp +++ b/src/ProcessInfo.cpp @@ -1141,9 +1141,6 @@ SSHProcessInfo::SSHProcessInfo(const ProcessInfo& process) kWarning() << "Could not read process cmdline arguments"; return; } - if (args.isEmpty()) { - return; - } // now parse it to get useful information const QHash results = parseSSHCommand(args);