mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-28 01:04:41 +08:00
fixed potential memory leak on move operator
This commit is contained in:
parent
06192258ed
commit
f2a1c8bf30
@ -63,7 +63,7 @@ struct BlocksTree
|
||||
|
||||
}
|
||||
|
||||
BlocksTree(BlocksTree&& that)
|
||||
BlocksTree(BlocksTree&& that) : BlocksTree()
|
||||
{
|
||||
makeMove(::std::forward<BlocksTree&&>(that));
|
||||
}
|
||||
@ -95,6 +95,11 @@ private:
|
||||
|
||||
void makeMove(BlocksTree&& that)
|
||||
{
|
||||
if (node && node != that.node)
|
||||
{
|
||||
delete node;
|
||||
}
|
||||
|
||||
children = ::std::move(that.children);
|
||||
node = that.node;
|
||||
frame_statistics = that.frame_statistics;
|
||||
|
Loading…
x
Reference in New Issue
Block a user