fix for crash in apps when splash is missing

This commit is contained in:
psucien 2024-05-16 09:07:03 +02:00 committed by georgemoralis
parent 77cf875585
commit 38061ae636
2 changed files with 8 additions and 2 deletions

View file

@ -622,7 +622,9 @@ public:
void SubmitDone() {
// This is wrong as `submitDone()` should never be blocking. The behavior will be
// reworked with mutiple queues introduction
cp.get();
if (cp.valid()) {
cp.get();
}
}
private: