Changed: Open in ReadOnly the process

This commit is contained in:
kervala 2016-10-21 14:26:46 +02:00
parent efd479e278
commit 5a06e81a76

View file

@ -426,7 +426,7 @@ QString getVersionFromExecutable(const QString &path)
// launch executable with --version argument
QProcess process;
process.setProcessChannelMode(QProcess::MergedChannels);
process.start(path, QStringList() << "--version", QIODevice::ReadWrite);
process.start(path, QStringList() << "--version", QIODevice::ReadOnly);
if (!process.waitForStarted())
{