mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
explorer: fix small memory leak
svn path=/trunk/; revision=21012
This commit is contained in:
parent
f1418c491d
commit
d81a4d5c75
1 changed files with 3 additions and 1 deletions
|
@ -163,8 +163,10 @@ Root::Root()
|
|||
|
||||
Root::~Root()
|
||||
{
|
||||
if (_entry)
|
||||
if (_entry) {
|
||||
_entry->free_subentries();
|
||||
delete _entry;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue