[kdevelop] [Bug 392564] Kdevelop crashes when clicking "Stop All"

2018-04-04 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=392564

--- Comment #1 from Kevin Funk  ---
Hm, I don't see anything wrong in the code in kdevplatform here.

The location where the crash is happening is likely:
```
#if QT_VERSION < 0x050600
connect(process,
static_cast(::error),
#else
connect(process, ::errorOccurred,
#endif
this, [](QProcess::ProcessError error) {
qCWarning(SHELL) << "process finished with error:" << error;
}); 
```

Specifically, this line seems to cause a crash:
> qCWarning(SHELL) << "process finished with error:" << error;

But: I don't see how `error` can be corrupted, also given that the QProcess
instance is still fully intact at that time...

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdevelop] [Bug 392564] Kdevelop crashes when clicking "Stop All"

2018-04-04 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=392564

Christoph Feck  changed:

   What|Removed |Added

   Severity|normal  |crash

-- 
You are receiving this mail because:
You are watching all bug changes.