diff --git a/src/util/externalcommandhelper.cpp b/src/util/externalcommandhelper.cpp index fc11591..e5262d6 100644 --- a/src/util/externalcommandhelper.cpp +++ b/src/util/externalcommandhelper.cpp @@ -284,15 +284,16 @@ QVariantMap ExternalCommandHelper::RunCommand(const QString& command, const QStr // connect(&cmd, &QProcess::readyReadStandardOutput, this, &ExternalCommandHelper::onReadOutput); - m_cmd.setEnvironment( { QStringLiteral("LVM_SUPPRESS_FD_WARNINGS=1") } ); - m_cmd.setProcessChannelMode(static_cast(processChannelMode)); - m_cmd.start(command, arguments); - m_cmd.write(input); - m_cmd.closeWriteChannel(); - m_cmd.waitForFinished(-1); - QByteArray output = m_cmd.readAllStandardOutput(); + QProcess cmd; + cmd.setEnvironment( { QStringLiteral("LVM_SUPPRESS_FD_WARNINGS=1") } ); + cmd.setProcessChannelMode(static_cast(processChannelMode)); + cmd.start(command, arguments); + cmd.write(input); + cmd.closeWriteChannel(); + cmd.waitForFinished(-1); + QByteArray output = cmd.readAllStandardOutput(); reply[QStringLiteral("output")] = output; - reply[QStringLiteral("exitCode")] = m_cmd.exitCode(); + reply[QStringLiteral("exitCode")] = cmd.exitCode(); return reply; } diff --git a/src/util/externalcommandhelper.h b/src/util/externalcommandhelper.h index c86a8d6..e459b00 100644 --- a/src/util/externalcommandhelper.h +++ b/src/util/externalcommandhelper.h @@ -46,7 +46,6 @@ private: bool isCallerAuthorized(); void onReadOutput(); - QProcess m_cmd; QDBusServiceWatcher *m_serviceWatcher = nullptr; };