bug fixed: the MainWindow object wasn't deleted.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1072 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
beardog_uk 2009-03-12 15:51:19 +00:00
parent c35c60bbb1
commit 4451c2690f

View File

@ -181,7 +181,9 @@ int main(int argc, char *argv[])
/* dive into the endless loop */
// return ret;
return rshare.exec();
int ti = rshare.exec();
delete w ;
return ti ;
}