Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KTorrent
Commits
8c83f07c
Commit
8c83f07c
authored
May 22, 2009
by
Joris Guisson
Browse files
Forward port fix for 193585 from stable
svn path=/trunk/extragear/network/ktorrent/; revision=971279
parent
32e5f97a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
8c83f07c
...
...
@@ -43,6 +43,7 @@ Changes in 3.2.2 :
- Fix crash when parsing DHT packets (190107)
- Remove newlines from path names of files when present in torrent file (192652)
- Properly check for GeoIP system library (193117)
- Fix crash at exit caused by stopping torrent in it's destructor (193585)
Changes in 3.2.1 :
- Resort torrents if display name is changed
...
...
libbtcore/torrent/torrentcontrol.cpp
View file @
8c83f07c
...
...
@@ -127,7 +127,11 @@ namespace bt
TorrentControl
::~
TorrentControl
()
{
if
(
stats
.
running
)
{
// block all signals to prevent crash at exit
blockSignals
(
true
);
stop
(
false
);
}
if
(
tmon
)
tmon
->
destroyed
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment