summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/CompressedBlob.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-10-08 22:22:13 +0000
committerhrydgard <hrydgard@gmail.com>2009-10-08 22:22:13 +0000
commitf2e959fc6ebe63e3bfe4342f87393788da938de0 (patch)
treef25b707606ed260e15a49e7606107834c39b4dcb /Source/Core/DiscIO/Src/CompressedBlob.cpp
parent860b3677d2613262a5cc74b6a4f36f684f738849 (diff)
CompressedBlob - add a missing delete. saw this while briefly looking at the weird issue 1196
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4388 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
-rw-r--r--Source/Core/DiscIO/Src/CompressedBlob.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp
index 1866f7a789..8bafb48aaa 100644
--- a/Source/Core/DiscIO/Src/CompressedBlob.cpp
+++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp
@@ -284,6 +284,7 @@ cleanup:
delete[] in_buf;
delete[] out_buf;
delete[] offsets;
+ delete[] hashes;
fclose(f);
fclose(inf);
callback("Done compressing disc image.", 1.0f, arg);