-rw-r--r-- | noncore/net/opietooth/lib/device.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc index 0c552ea..468f191 100644 --- a/noncore/net/opietooth/lib/device.cc +++ b/noncore/net/opietooth/lib/device.cc @@ -1,7 +1,9 @@ +#include <signal.h> + #include "kprocess.h" #include "device.h" using namespace OpieTooth; @@ -38,13 +40,13 @@ void Device::attach(){ void Device::detach(){ delete m_hci; delete m_process; // kill the pid we got if(m_attached ) //kill the pid - ; + kill(pid, 9); } bool Device::isLoaded()const{ return m_attached; } QString Device::devName()const { return QString::fromLatin1("hci0"); @@ -87,13 +89,13 @@ void Device::slotExited( KProcess* proc) } void Device::slotStdOut(KProcess* proc, char* chars, int len) { if( len <1 ) return; if(proc == m_process ){ - QCString string( chars ); + QCString string( chars, len+1 ); if(string.left(3) != "CSR" ){ // it's the pid pid = string.toInt(); }; } } void Device::slotStdErr(KProcess*, char*, int ) |