SVN commit 882215 by danielw: Wait for terminated child to avoid defunct processes hanging arround CCMAIL: jos@vandenoever.info M +2 -0 processinputstream.cpp --- trunk/kdesupport/strigi/src/streams/processinputstream.cpp #882214:882215 @@ -64,6 +64,8 @@ } if (pid != -1) { kill(SIGTERM, pid); + int status; + waitpid(pid, &status , 0); } const char* const* p = args; while (*p) {