diff --git a/Changelog b/Changelog index f36b348d3..15f274b44 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Unknown - Christophe Dumez - v1.5.4 - BUGFIX: Updated man page + - BUGFIX: Fixed possible crash with torrents containing unicode characters * Wed Sep 30 2009 - Christophe Dumez - v1.5.3 - BUGFIX: Fix a possible crash when pausing then deleting a torrent quickly diff --git a/src/qtorrenthandle.cpp b/src/qtorrenthandle.cpp index 2221e2d71..2e4316a83 100644 --- a/src/qtorrenthandle.cpp +++ b/src/qtorrenthandle.cpp @@ -236,7 +236,7 @@ size_type QTorrentHandle::filesize_at(unsigned int index) const { std::vector const& QTorrentHandle::trackers() const { Q_ASSERT(h.is_valid()); - return h.trackers(); + return h.get_torrent_info().trackers(); } torrent_status::state_t QTorrentHandle::state() const {