diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-10 20:29:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-10 20:29:12 +0100 |
commit | 2e96061e6d796110ea74513b71aee560ac01cd57 (patch) | |
tree | 49ec2c26b6381ef4cec3ce6d25b521e1dc23085a /cui/source | |
parent | 7b1a2641083085cb616e235a893f99387b569dff (diff) |
CID#736323 resource leak
Change-Id: I264011a8371e71e28bda8ed853894088f680cd71
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/options/treeopt.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index 47cdb640e782..36029955f1ac 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -2155,6 +2155,8 @@ VectorOfNodes OfaTreeOptionsDialog::LoadNodes( { pModule ? aNodeList.push_back( pNode ) : aOutNodeList.push_back( pNode ); } + else + delete pNode; } } |