From f2e959fc6ebe63e3bfe4342f87393788da938de0 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Thu, 8 Oct 2009 22:22:13 +0000 Subject: [PATCH] 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 --- Source/Core/DiscIO/Src/CompressedBlob.cpp | 1 + 1 file changed, 1 insertion(+) 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);