mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-06 21:58:57 -04:00
Memory leaks:
- ftController::copyFile -> buffer and file pointer leaks in case of error - PeersDialog::insertSendList -> new QTreeWidgetItem for all online peers, this function is not ready yet - PeersDialog::insertPeers -> gpg_item = new QTreeWidgetItem(0); in case of no more accept connection - pqissl::reset -> missing SSL_free of ssl_connection Missing return: - IntroPage::nextId git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2891 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
faace1f322
commit
b242b73f31
4 changed files with 32 additions and 15 deletions
|
@ -188,6 +188,8 @@ int IntroPage::nextId() const
|
|||
if (textRadioButton->isChecked()) return ConnectFriendWizard::Page_Text;
|
||||
if (certRadioButton->isChecked()) return ConnectFriendWizard::Page_Cert;
|
||||
if (foffRadioButton->isChecked()) return ConnectFriendWizard::Page_Foff;
|
||||
|
||||
return ConnectFriendWizard::Page_Foff;
|
||||
}
|
||||
//
|
||||
//============================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue