Closed pinotree closed 6 years ago
Using bare system() like this is not exactly safe:
system()
Thus, just switch to QProcess::execute() instead:
QProcess::execute()
Thanks for catching that one!
Using bare
system()
like this is not exactly safe:system()
spawns a shell, which is not needed in this caseThus, just switch to
QProcess::execute()
instead: