From 058fe8c8e075fed8112791e3847bdf2d50c58b0f Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Fri, 13 Feb 2026 14:04:11 +0100 Subject: [PATCH] gamecenter: bound waitForStarted during direct launch --- src/gamecenter/gamecenterdaemon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamecenter/gamecenterdaemon.cpp b/src/gamecenter/gamecenterdaemon.cpp index da5b580..29cdfc1 100644 --- a/src/gamecenter/gamecenterdaemon.cpp +++ b/src/gamecenter/gamecenterdaemon.cpp @@ -1279,7 +1279,7 @@ QString GameCenterDaemon::launchDirect(const QVariantMap &launchSpec) } process->start(program, args); - if (!process->waitForStarted()) { + if (!process->waitForStarted(5000)) { const QVariantMap ctx = { {QStringLiteral("command"), command}, {QStringLiteral("program"), program},