fix torrent_info::swap
This commit is contained in:
parent
c8f3063f25
commit
39e2e4d3dc
|
@ -1,3 +1,5 @@
|
||||||
|
* fixed bug in torrent_info::swap
|
||||||
|
|
||||||
1.2.2 release
|
1.2.2 release
|
||||||
|
|
||||||
* fix cases where the disable_hash_checks setting was not honored
|
* fix cases where the disable_hash_checks setting was not honored
|
||||||
|
|
|
@ -1028,6 +1028,10 @@ namespace {
|
||||||
m_files.swap(ti.m_files);
|
m_files.swap(ti.m_files);
|
||||||
m_orig_files.swap(ti.m_orig_files);
|
m_orig_files.swap(ti.m_orig_files);
|
||||||
m_nodes.swap(ti.m_nodes);
|
m_nodes.swap(ti.m_nodes);
|
||||||
|
m_similar_torrents.swap(ti.m_similar_torrents);
|
||||||
|
m_owned_similar_torrents.swap(ti.m_owned_similar_torrents);
|
||||||
|
m_collections.swap(ti.m_collections);
|
||||||
|
m_owned_collections.swap(ti.m_owned_collections);
|
||||||
swap(m_info_hash, ti.m_info_hash);
|
swap(m_info_hash, ti.m_info_hash);
|
||||||
swap(m_creation_date, ti.m_creation_date);
|
swap(m_creation_date, ti.m_creation_date);
|
||||||
m_comment.swap(ti.m_comment);
|
m_comment.swap(ti.m_comment);
|
||||||
|
|
Loading…
Reference in New Issue