https://bugs.kde.org/show_bug.cgi?id=392564

--- Comment #1 from Kevin Funk <kf...@kde.org> ---
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<void(QProcess::*)(QProcess::ProcessError)>(&QProcess::error),
#else
        connect(process, &QProcess::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.

Reply via email to