mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-19 21:13:12 -07:00
Fix Stack Free in CLI Stream
This commit is contained in:
parent
d5b220d7c3
commit
a6e24ce325
1 changed files with 1 additions and 3 deletions
|
@ -169,11 +169,9 @@ int RunMain(QApplication &app, Settings *settings)
|
||||||
return app.exec();
|
return app.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int RunStream(QApplication &app, const StreamSessionConnectInfo &connect_info)
|
int RunStream(QApplication &app, const StreamSessionConnectInfo &connect_info)
|
||||||
{
|
{
|
||||||
StreamWindow window(connect_info);
|
StreamWindow *window = new StreamWindow(connect_info);
|
||||||
app.setQuitOnLastWindowClosed(true);
|
app.setQuitOnLastWindowClosed(true);
|
||||||
return app.exec();
|
return app.exec();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue