Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 507256 - net-p2p/amule-2.3.1 - amuled ?
Summary: net-p2p/amule-2.3.1 - amuled ?
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Normal normal
Assignee: Gentoo net-p2p team
URL: http://www.amule.org/
Whiteboard:
Keywords: PATCH
Depends on:
Blocks:
 
Reported: 2014-04-09 16:08 UTC by Vladimir P.
Modified: 2014-04-10 00:00 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir P. 2014-04-09 16:08:10 UTC
With this bug may amuled and webserver of amule crash with obscure log.
I find it in imule and see that there is it in amule-2.3.1 also.

Reproducible: Couldn't Reproduce




That patch corect it and place of bug.
[code]
diff --git a/src/amuled.cpp b/src/amuled.cpp
index c34a672..1e2f93a 100644
--- a/src/amuled.cpp
+++ b/src/amuled.cpp
@@ -368,6 +368,7 @@ void CDaemonAppTraits::DeletePending()
 	while ( !m_sched_delete.empty() ) {
 		std::list<wxObject *>::iterator i = m_sched_delete.begin();
 		wxObject *object = *i;
+		m_sched_delete.erase(i);
 		delete object;
 	}
 	//m_sched_delete.erase(m_sched_delete.begin(), m_sched_delete.end());
diff --git a/src/webserver/src/WebInterface.cpp b/src/webserver/src/WebInterface.cpp
index fe21088..7287ace 100644
--- a/src/webserver/src/WebInterface.cpp
+++ b/src/webserver/src/WebInterface.cpp
@@ -351,6 +351,7 @@ void CWebserverAppTraits::DeletePending()
 	while (!m_sched_delete.empty()) {
 		std::list<wxObject *>::iterator i = m_sched_delete.begin();
 		wxObject *object = *i;
+		m_sched_delete.erase(i);
 		delete object;
 	}
 }
[/code]