summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2012-07-27 15:25:52 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2012-07-27 15:25:52 +0000
commitb401946faeee0c3503a467e57d0bc51b06eec6f2 (patch)
tree67e480b40813ad377f423a755a2b837e9105f6b8 /src/lib
parent5864158d33b36781075e4e1aef7c96b97c387ac1 (diff)
fixed memory leak in chd_file_compressor::hashmap (no whatsnew)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util/chd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/util/chd.c b/src/lib/util/chd.c
index dd373c05c6a..70510531db0 100644
--- a/src/lib/util/chd.c
+++ b/src/lib/util/chd.c
@@ -2717,6 +2717,7 @@ chd_file_compressor::hashmap::hashmap()
chd_file_compressor::hashmap::~hashmap()
{
reset();
+ delete m_block_list;
}