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
This commit is contained in:
hrydgard 2009-10-08 22:22:13 +00:00
parent 860b3677d2
commit f2e959fc6e
1 changed files with 1 additions and 0 deletions

View File

@ -284,6 +284,7 @@ cleanup:
delete[] in_buf; delete[] in_buf;
delete[] out_buf; delete[] out_buf;
delete[] offsets; delete[] offsets;
delete[] hashes;
fclose(f); fclose(f);
fclose(inf); fclose(inf);
callback("Done compressing disc image.", 1.0f, arg); callback("Done compressing disc image.", 1.0f, arg);