mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
- Fixed memory leak introduced in last commit
This commit is contained in:
parent
6a3dddd0cc
commit
cfcd9b7eaf
@ -179,13 +179,16 @@ int main(int argc, char *argv[]){
|
|||||||
QStringList torrentCmdLine = app->arguments();
|
QStringList torrentCmdLine = app->arguments();
|
||||||
// Remove first argument (program name)
|
// Remove first argument (program name)
|
||||||
torrentCmdLine.removeFirst();
|
torrentCmdLine.removeFirst();
|
||||||
GUI window(0, torrentCmdLine);
|
GUI *window = new GUI(0, torrentCmdLine);
|
||||||
splash->finish(&window);
|
splash->finish(window);
|
||||||
delete splash;
|
delete splash;
|
||||||
#ifndef Q_WS_WIN
|
#ifndef Q_WS_WIN
|
||||||
signal(SIGTERM, sigtermHandler);
|
signal(SIGTERM, sigtermHandler);
|
||||||
#endif
|
#endif
|
||||||
return app->exec();
|
int ret = app->exec();
|
||||||
|
delete window;
|
||||||
|
delete app;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user