From de29d08623c8807c85e996f81b71e9339466067c Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Wed, 3 Jun 2015 12:22:17 -1000 Subject: [PATCH] Decompressor: removed unwarranted delete[] --- src/RetroCommon.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/RetroCommon.cpp b/src/RetroCommon.cpp index 49a5134a2..a783d5c21 100644 --- a/src/RetroCommon.cpp +++ b/src/RetroCommon.cpp @@ -102,6 +102,4 @@ void decompressFile(aIO::IStreamWriter& outbuf, const atUint8* data, atUint32 sr decompressData(outbuf, (const atUint8*)tmp, srcLength - 4, uncompressedLength); delete[] tmp; } - - delete[] data; }