diff options
author | 2012-07-27 15:25:52 +0000 | |
---|---|---|
committer | 2012-07-27 15:25:52 +0000 | |
commit | b401946faeee0c3503a467e57d0bc51b06eec6f2 (patch) | |
tree | 67e480b40813ad377f423a755a2b837e9105f6b8 /src | |
parent | 5864158d33b36781075e4e1aef7c96b97c387ac1 (diff) |
fixed memory leak in chd_file_compressor::hashmap (no whatsnew)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/util/chd.c | 1 |
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; } |