Commit ac40ec64046c4f18b5fd5be37827ece9ae7b0c90

crash fix if the application can not be started under windows
  
7979
8080void WindowsInjector::attachToSpawnedProcess()
8181{
82 attach(m_process->pid());
82 if(m_process->state() == QProcess::NotRunning)
83 {
84 // TODO: Propogate to UI
85 qDebug() << "Failed to start process:" << m_process->error();
86 }
87 else
88 {
89 attach(m_process->pid());
90 }
8391}
8492
8593void WindowsInjector::attach(Q_PID processId)