- Fixed memory leak introduced in last commit

This commit is contained in:
Christophe Dumez 2008-12-26 16:27:52 +00:00
parent 6a3dddd0cc
commit cfcd9b7eaf

View File

@ -179,13 +179,16 @@ int main(int argc, char *argv[]){
QStringList torrentCmdLine = app->arguments();
// Remove first argument (program name)
torrentCmdLine.removeFirst();
GUI window(0, torrentCmdLine);
splash->finish(&window);
GUI *window = new GUI(0, torrentCmdLine);
splash->finish(window);
delete splash;
#ifndef Q_WS_WIN
signal(SIGTERM, sigtermHandler);
#endif
return app->exec();
int ret = app->exec();
delete window;
delete app;
return ret;
}